In [1]:
import requests
from bs4 import BeautifulSoup

url = 'https://www.apindustries.gov.in/SPS/UserAccount/LocationMap.aspx'
response = requests.get(url)
print(response) #checking if it worked ; 200- Okay

soup = BeautifulSoup(response.text, 'html.parser') #parsing
mydiv = soup.find("div", attrs={"class": "container-fluid"})  #finding the parent div tag
scripts = mydiv.findAll('script')[1] #getting the script tag
# scripts
<Response [200]>
In [2]:
scripts_Str = scripts.string.strip()
scripts_Str = scripts_Str.replace('\r\n','')
scripts_Str=scripts_Str[:-1]+" "+scripts_Str[-1]
scripts_Str[-20:]
Out[2]:
'                }] ;'
In [3]:
import re
# import json

pattern = 'var markers = (.*?) ;'
p = re.match(pattern, scripts_Str)
p.groups()
# p.string
d = p.groups()[0]
d[:1000]
# data = json.loads(p.groups()[0])
Out[3]:
'[            {            "title": \'Sri padamavathi mechanical works\',            "lat": \'16.4971132\',            "lng": \'80.6779712\',           // "description": \'Krishna\',           "description": "<table><tr style=\'height:30px;\'><td style=\'width:180px;\'>Industry Name</td><td style=\'width:20px;\'>:</td><td><b>"+\'Sri padamavathi mechanical works\'+"</b></td></tr><tr style=\'height:30px;\'><td>District Name</td><td>:</td><td><b>"+\'Krishna\'+"</b></td></tr><tr style=\'height:30px;\'><td>Sector Name</td><td>:</td><td><b>"+\'SERVICE\'+"</b></td></tr><tr style=\'height:30px;\'><td>Activity Name</td><td>:</td><td><b>"+\'REPAIR AND MAINTENANCE OF BUSES\'+"</b></td></tr><tr style=\'height:30px;\'><td>Industry as per pollution Index Category</td><td>:</td><td><b>"+\'White\'+"</b></td></tr><tr style=\'height:30px;\'><td>Total Workers</td><td>:</td><td><b>"+\'1\'+"</b></td></tr></table><b>",       "category":\'Micro.png\'                  }    ,            {            "title": \'venkatesh mechanical works\',           '
In [4]:
dataform = str(p.groups()[0]).strip("'<>() ").replace('\'', '\"')
# dataform[:10000]
dataform=dataform.split("}    ,")   #splitting companies by },
# print(len(dataform)) - 36271
dataform=[i.split("            {            ")[1].strip() for i in dataform]  #cleaning companies by also removing { by making into a list
# print(len(dataform)) - 36271
dataform[:5]
Out[4]:
['"title": "Sri padamavathi mechanical works",            "lat": "16.4971132",            "lng": "80.6779712",           // "description": "Krishna",           "description": "<table><tr style="height:30px;"><td style="width:180px;">Industry Name</td><td style="width:20px;">:</td><td><b>"+"Sri padamavathi mechanical works"+"</b></td></tr><tr style="height:30px;"><td>District Name</td><td>:</td><td><b>"+"Krishna"+"</b></td></tr><tr style="height:30px;"><td>Sector Name</td><td>:</td><td><b>"+"SERVICE"+"</b></td></tr><tr style="height:30px;"><td>Activity Name</td><td>:</td><td><b>"+"REPAIR AND MAINTENANCE OF BUSES"+"</b></td></tr><tr style="height:30px;"><td>Industry as per pollution Index Category</td><td>:</td><td><b>"+"White"+"</b></td></tr><tr style="height:30px;"><td>Total Workers</td><td>:</td><td><b>"+"1"+"</b></td></tr></table><b>",       "category":"Micro.png"',
 '"title": "venkatesh mechanical works",            "lat": "13.2185764",            "lng": "79.1249472",           // "description": "Chittoor",           "description": "<table><tr style="height:30px;"><td style="width:180px;">Industry Name</td><td style="width:20px;">:</td><td><b>"+"venkatesh mechanical works"+"</b></td></tr><tr style="height:30px;"><td>District Name</td><td>:</td><td><b>"+"Chittoor"+"</b></td></tr><tr style="height:30px;"><td>Sector Name</td><td>:</td><td><b>"+"SERVICE"+"</b></td></tr><tr style="height:30px;"><td>Activity Name</td><td>:</td><td><b>"+"REPAIR AND MAINTENANCE OF BUSES"+"</b></td></tr><tr style="height:30px;"><td>Industry as per pollution Index Category</td><td>:</td><td><b>"+"Green"+"</b></td></tr><tr style="height:30px;"><td>Total Workers</td><td>:</td><td><b>"+"1"+"</b></td></tr></table><b>",       "category":"Micro.png"',
 '"title": "N Nagaraju Transformers",            "lat": "14.4516162",            "lng": "78.8407888",           // "description": "Kadapa",           "description": "<table><tr style="height:30px;"><td style="width:180px;">Industry Name</td><td style="width:20px;">:</td><td><b>"+"N Nagaraju Transformers"+"</b></td></tr><tr style="height:30px;"><td>District Name</td><td>:</td><td><b>"+"Kadapa"+"</b></td></tr><tr style="height:30px;"><td>Sector Name</td><td>:</td><td><b>"+"SERVICE"+"</b></td></tr><tr style="height:30px;"><td>Activity Name</td><td>:</td><td><b>"+"Repair And Maintenance of Electric Motors, Generators and Transformers"+"</b></td></tr><tr style="height:30px;"><td>Industry as per pollution Index Category</td><td>:</td><td><b>"+"Green"+"</b></td></tr><tr style="height:30px;"><td>Total Workers</td><td>:</td><td><b>"+"4"+"</b></td></tr></table><b>",       "category":"Micro.png"',
 '"title": "Srinivasa Electricals",            "lat": "16.5043265",            "lng": "80.7025557",           // "description": "Krishna",           "description": "<table><tr style="height:30px;"><td style="width:180px;">Industry Name</td><td style="width:20px;">:</td><td><b>"+"Srinivasa Electricals"+"</b></td></tr><tr style="height:30px;"><td>District Name</td><td>:</td><td><b>"+"Krishna"+"</b></td></tr><tr style="height:30px;"><td>Sector Name</td><td>:</td><td><b>"+"SERVICE"+"</b></td></tr><tr style="height:30px;"><td>Activity Name</td><td>:</td><td><b>"+"Repair And Maintenance of Electric Motors, Generators and Transformers"+"</b></td></tr><tr style="height:30px;"><td>Industry as per pollution Index Category</td><td>:</td><td><b>"+"Green"+"</b></td></tr><tr style="height:30px;"><td>Total Workers</td><td>:</td><td><b>"+"1"+"</b></td></tr></table><b>",       "category":"Micro.png"',
 '"title": "sai hanuman engineering works",            "lat": "16.6368089",            "lng": "80.9712264",           // "description": "West Godavari",           "description": "<table><tr style="height:30px;"><td style="width:180px;">Industry Name</td><td style="width:20px;">:</td><td><b>"+"sai hanuman engineering works"+"</b></td></tr><tr style="height:30px;"><td>District Name</td><td>:</td><td><b>"+"West Godavari"+"</b></td></tr><tr style="height:30px;"><td>Sector Name</td><td>:</td><td><b>"+"SERVICE"+"</b></td></tr><tr style="height:30px;"><td>Activity Name</td><td>:</td><td><b>"+"Repair And Maintenance of Electric Motors, Generators and Transformers"+"</b></td></tr><tr style="height:30px;"><td>Industry as per pollution Index Category</td><td>:</td><td><b>"+"Green"+"</b></td></tr><tr style="height:30px;"><td>Total Workers</td><td>:</td><td><b>"+"4"+"</b></td></tr></table><b>",       "category":"Micro.png"']
In [5]:
x1 = """<table><tr style="height:30px;"><td style="width:180px;">"""
x2 = """</td><td style="width:20px;">:</td><td><b>"+"""
x3 = """+"</b></td></tr><tr style="height:30px;"><td>"""
x4 = """</td><td>:</td><td><b>"+"""
x5 = """+"</b></td></tr></table><b>"""
dataform=[i.replace(x1," ").replace(x2," ").replace(x3, " ").replace(x4, " ").replace(x5," ") for i in dataform]  #removing the tags in description to clean it
# dataform[:5]

dataform1 = [[j.strip() for j in i.split(",")]for i in dataform]  #splitting a company by type
len(dataform1[0])
Out[5]:
6
In [6]:
import pandas as pd
df = pd.DataFrame(columns=['Industry Name','Latitude','Longitude','Category', 'District Name','Sector Name','Activity Name','Pollution Index Category','Total Workers'])
for company in dataform1:
#   print(company)
  IN = company[0][10:len(company[0])-1]
  LT = company[1][8:len(company[1])-1]
  LN = company[2][8:len(company[2])-1]
  CT = company[-1][12:len(company[-1])-5]
  des = list(filter(("").__ne__,company[4].split("\"")[3:-2]))
  print(des)
  DN = des[3]
  if len(des)== 4:
      des.append('NA')
      des.append('NA')
  SN = des[5]
  if len(company)>6:
      a = list(filter(("").__ne__,company[5].split("\"")[0:1]))
      b = list(filter(("").__ne__,company[5].split("\"")[2:3]))
      if len(b) == 0:
          b.append('NA')
      c = list(filter(("").__ne__,company[5].split("\"")[3:-2]))
      if len(c) < 2:
          c.append('NA')
          c.append('NA')
    #   print(c)
      AN = a[0]
      PI = b[0]
      TW = c[1]
  else:
    AN = des[7]
    PI = des[9]
    if len(des) == 11:
        des.append('NA')
    TW = des[11]
  df = df.append({'Industry Name' : IN, 'Latitude' : LT, 'Longitude' : LN,'District Name' :DN,'Sector Name':SN,'Activity Name':AN,'Pollution Index Category':PI,'Category':CT,'Total Workers':TW},  
                ignore_index = True)
df['Total Workers'].unique()
[' Industry Name ', 'Sri padamavathi mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR AND MAINTENANCE OF BUSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkatesh mechanical works', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR AND MAINTENANCE OF BUSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Nagaraju Transformers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Srinivasa Electricals', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sai hanuman engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Baji Winding Works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Repairing of electric motor & generator', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raghavendra general stores', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K garments', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Madhu Surya Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS Chandra Gingily oil', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PINJARI kamalabi', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Siva Rice Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madeena Traders', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'rural godowns', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Kala  Beauty Parlor', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREES BEAUTY CLINIC', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SS Mens parlour', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Harshini Entraprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AMBIKA WEIGH BRIDGE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAVADURGA MINI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sampath Vinayaka ice plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vasavi mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghavaiah Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahimma ashiritha minaral plant water service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta mini industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswra floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B vaniprabha', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tyre vulcanisation works plot 360', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi mineral Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srivenkateswarariceandflourmill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Uday Traders', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ayyappaswamy oli', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PNR WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'bhavani gold machine cutting works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJ TAILORS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'MOTHI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'svksm  seva sangam', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Thirumalasrinivasaricemill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMULESWARA RAO FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Sri Lakshmi poundry works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SATYA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bahati aqua purified drinking water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRK COMMUNICATIONS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHREE SHYAM ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DESIGN STUDIO', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Masjid a Husenya water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOPI KRISHNA BIKE POINT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'DAVOOD TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'P Narayana Raju and sons Repairing works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'srisrinivasariceandflourmill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Ginger oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vigneswerasrilakshmiprasannanjaneyariceandfloormill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharat Hair Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Yashwant hydraulic service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'VIJAYA LAKSHMI LATHE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SRI VENKATESWARA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI GANESH ELECTRICAL REWINDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri venkateswara swamy decorticating', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRIKANTH SALOON', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai electricals', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Repairing of electric motor & generator', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADITYA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Allu Verrareddy  and sons charitable Trust water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'devi agency', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'babu Tyrell works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Habib water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'laxmi gas and Amp arc', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa ice candy', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Dawood Doula Auto electricals', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Repairing of electric motor & generator', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi venkata ramana engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Repairing of electric motor & generator', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mounika generator works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Repairing of electric motor & generator', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Krishnarice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI SHOE MART', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkateswararicemill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ASOKA COFFEE AND GENERAL STORES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'STAR AUTO ELECTRICAL TRACTOR SPARS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sai Ganesh Plastics', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAIRAM GRAPHICS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivaasa Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIVANI BEAUTY PARLOUR', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOTOR AND GENERAL TREDERS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Moosa', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik khasim gas welding works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAPOTHESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ayyappa diomand machine cutting works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanchikamakshi hand and machine cutting works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIDDHARTHA RICE AND FLOAR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Royal photo studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'karumuri Venkateswarao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kollipara Venkaiah flour', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAMSI KRISHNA MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Karumuri Satya vankata suryanarayana flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRATHAP KUMAR', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI STEEL FURNITURE', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri padamavathi oil filter and mini flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASHIRWAD PLASTICS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'AMBICA ENTERPRISES', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SRIVENKATESWARATRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri samba siva rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SURYA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SURYA MOBILES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kiran verma coffee and general traders', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'viswam tent works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'G Krishna Rao tailoring shop', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MATRIX MENS BEAUTY PARLOR', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Amrutha oils', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'hydro power industries', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'RR HAIR STYLE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'aNEW PEARL SHOES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pragathi dresses', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satyanarayana Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RETAIL SALE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai rama rural farmers  warehouse', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'rural godowns', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudha Hair Style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Hair Style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree raja Rajeswari traders', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'rural godowns', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANGEETHA BEAUTY PARLOUR', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI CELL AND NET WORLD', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subbarao saloon shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'hair cutting shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA HAIRSTYLES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narendra hair saloon', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MN Human Hair Exporters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PPM hair style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KK hair style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sathwika ladies tailor and Beauty parlour', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A1 Hair styles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI POOJITHA HERBAL BEAUTY PARLOUR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkatesh hair styles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAVANYA BEAUTY PARLOUR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CUT N COLOUR UNISEX SALON', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'STUDIO R UNISEX SALOON', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramalingeswara waterplant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAY SAI SINDU BEAUTY PARLOUR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'NAGENDRA HAIRSTYLES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naturals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'New Look beauty saloon', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MAJJI SATYARAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shri Beauty Care', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MALLAYYA IRON MART', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AARA beauty parlour', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Nidi fancy and beauty salon', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARCHANA HAIRSTYLE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anu Beauty Herbal parlour', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga salon', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVANEETHA PLASTICS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mirrors mens parlour', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Diamond hairstyle', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KUSUMA BUETYPARLER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SEENA BARBER SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vaishnavi beauty clinic', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Varasiddi Vinayaka Hair Style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Salon Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VG TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SCRAP TRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sai vijaya diagnostic centre', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'swathi kalayana mandapam', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Venkta Durga Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'QUICK WASH LAUNDRETTE', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'HI TECH EQUIPMENS AND FABRICATION', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sai Baba sahaya trust', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kakumanu subbamma Sri ramuru charitable trust water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAVYA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sreenivaasulu Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'star fabrication works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K baburao', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM GAS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pravish doors of india', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jp marketing', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAY KUMAR FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S Studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veera brahmendra drilling and welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'New Sivaji tent house', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karishma tours and travels online', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI SRINIVASA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V Subbarao rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Ramachandran A K Ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri doraswamy auto electrical works', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Santhi hospitals', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Hemanth Kumar flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bindu Online Services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Srinivasa modern rice and   flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Grinding machine', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parthasarathi tailors shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'biruvala works shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'cool moon services', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Andalamma mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Moulali welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi internet and xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RO plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sahastra beauty parlour', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi narasimha swamy water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KOTESWARI FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veerla Venkateswara RAO trust', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'poultry form', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ROJI ARTS AND COMMUNICATIONS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAHAMMADH BADHRULLA TROLLY WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'moulali water service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI ICE PARLOUR', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva balaji oil and general merchent', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sharoon welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijayalakshmi oil and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Bhaskara Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchamma thalli welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'gangabhavani charitrabul trust', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA CHILLY TURMARIC AND WET', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla charitable trust meeravali water treatment plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dhanalakshmi rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri bhunaveswari dairyform', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk adam saheb', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGARATHNA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm Satyanarayana work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramachandran A K Oilmill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FRIENDS SUPPLIERS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ambika cool drinks', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI WELDING AND BLACKSMITH WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SHAMSHADBEGUM MINI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HAFEEZ Engineering work and entriprices', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OMEGA PIPE Inspection and Services Private limited', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Farheen oil rotary and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Supreme mobiles and laptop services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Padmavathi tailor shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji Engineering Work', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDANA Keerthi Talioring', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shankar purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vannur vali milltech rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VISWAKARMA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N KHADER ICE CANDY', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramesh Cable Services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahboob subani modern rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Eswar reddy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROOHIN GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sarojamma Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vigneswara Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA PRINTING PRESS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK KHALEEL WORKSHOP', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree vishnu warehouse', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RSLS TRANSPORT', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'veeranjaneya rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'APT Onilne', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'xerox shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk Buron Buffing Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramanjaneya Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mourya cell point', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'house basha cable tv network', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'mechanic shop', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bike cleaning', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ASWINI TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siri net center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ALIVELAMMA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madhu Xerox shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Swetha Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Kasturi Rice Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'soumik charitable Trust', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mastery products', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Reddy water servicing center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA FLOUR MILL NARAYANAPURAM', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A TO Z FOUNDRY WORK S', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Manju Ladies Tailor shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Narasimha Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'grinding  Lakshmi reddy', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANJENEYA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RR mohan automobile engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS Taslim flour mill', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Eluru times', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sidhardha Art Printers', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Bhavani welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'waterplant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'poultry and hatcheries', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri guru tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MADEENA SHAMIYANA SUPPLIES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri dhanam rice industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chandu fashion design tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sivapuram printers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandrakala ladies', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pavanaputra floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'padmashree ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RANI FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANAPURNA BATTERY AND ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AVN studio', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMUNAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi kamakshi welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kondareddy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'danalakshmisamil timber dipo', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUVARCHALA ANJANEYA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADIKARI AGRO SERVICES', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KANAKA MAHALAKSHMI FOUNDATION', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmidevi Tailoring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'OM SRI SAI LADIES TAILORS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'himani ice parlor', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VENKATESWARA PINDI MACHINE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BAPUJI  hospital', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'gayatri milk dairy', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi Xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'keywayresearch', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'karthikeya industries', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MANJUNATHA XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMRUTHAA COTTON COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kanaka durga iron works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vijayalakshmi oil  and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'p v internet', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asadi Nagarani', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nirmala flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree rama mini Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MaruthiRiceMill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'elahi engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MURALI KRISHNA OIL AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANA OIL AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zerox Machine', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mini floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri veeranjaneya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYANA OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAIDU FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAIRAM ADS', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Anna offset Printers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Narayanamma Tailoring Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AL MUHAMMADIYA AUTOMOTIVE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ISMAIL FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SUBHAM FLEX', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'shek Mahaboob Basha enginnering works', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA WATER SERVICING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkataswamy salt manufacturing', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HUSSEIN BEE Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A One Computers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAYAMN S GHULAM', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Damodharam Oil Rotary', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Asha tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kataiah swamy lorry service', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI DURGA FABRICATION AND GRILLS WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'BHAVISYA COMPUTERS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Queens Beauty Parlor', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Eethamukkala yehonu salt production', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'vigneswara mutyalamma pindimillu', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA GENERAL ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri trikoteswara swamy lorry service', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '24']
[' Industry Name ', 'Varun paper plates production', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AM services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI MINERAL WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandrakala Xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVAJEEVAN Offset Meeseva', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naseer Mobiles', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G Industry', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Dhanlakshmi floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BASHA PUNCTURE SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fakruma bee flour mills', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BABA General Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rangaiahachari Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BASHA CYCLE MART', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Priya computers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veera brahmendra industry works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EXCELLENT KITCHEN EQUIPMENTS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sivasankarappa flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandrashekahr Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Unique computers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahesh Xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri anjaneya digital studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANYAM XEROX', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karthik Xerox Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Raheman Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Mekala Hanumanthu Rao', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Aqua gold mineral water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Anu Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RANGA CYCLE MART', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meena Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'smile icecream plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shanti optical works', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkatesaara flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI JYOTHI WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SKANDA FABRICATIONS', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE BALAJI RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ms mani floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Photo laminations and Studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAHAMATH HARDWARE AND WIRE CARTS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'V V R PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS STUDIO', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI PRABHA AND SRI  GOPI KRISHNA CABLE NETWORK', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SHIRIDI SAIBABA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Manjunatha Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI ONLIE SERVICES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rama kishore ice creams', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sreerama enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA RAMA ROTARY OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'blue max tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S laxmi ice blocks', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman threads', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chennakesava water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BALAJI AUTO XEROX', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gouri Shankar Xerox', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KBN AIR CONDITIONING', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandramohan flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yasin Tailor Shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'nayeb rasool Xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Mini  flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri rama mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rk photo studio', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'silver tea palace', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA PUBLICATIONS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BISMILLA FOUNTRY WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BIKSHALA RAO CHARITIBLE TRUST MINERAL WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'surya BHASKARA flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nagaraju flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUMATHI TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Bhemmaeswara DallMill', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatramanamma Oil Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI LAKSHMI JOB WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rainbow digitals', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kadapa traders', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Apple books and Xerox shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'Kanaka mahalaxmi floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayamma', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dadapeer bore water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARITHA AQUA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree Rama flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI INTERNET AND XEROX', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mastan net shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Raja Rajeswari modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshmi narayana onlie', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VRP Cycle Mart', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAN XEROX', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramanjaneya Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIDHYA COTTEX', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUJITHA XEROX CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kalimatha bike mechanic', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasarao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREENU PIPE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Refinery', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA DURGA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BNR TAILOURS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JEELAN BASHA FLOUR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivas Reddy Xerox shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinuvasa rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA OIL PINTO', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'abc', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA SESHU KANAKA DURGA GUPTA', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S GURUMURTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kotiratna arc welding and turning works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI NAGA VENKATA PRINTING PRESS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KOVVURU PARCEL SERVICE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'FRIENDS MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva sai glass computer sticker works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri ayyappa maggam works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'vigneswara book depo', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kullayapa Flour  Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SUDHA TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'purusottam tailaring shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri SRINIVASA Saw Mill Gagraharam', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Two wheeler mechanic shop', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'akshara printers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Harini auto works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RR Kanniappan Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T Ramakrishna', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMIN IRON MART', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Durga oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna milk', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHARGAVI XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARSHITHA PROVISIONS AND XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'xerox machine', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhagyamma flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tyre vulcanising works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Matha welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B F PRINTERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Celluloid', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'Vinayaka flour milling machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naveed weilding works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tailor shop stitching', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'air stride robo technologies', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri jayamadhavi printers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hire matam indresha swamy grinder sho', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sajid engineering and mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G SARAVANAN POWERLOOMS', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tailor shop A', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hari flourmill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Asma', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi narasimha mineral water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rapid meeseva', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI DHANALAKSHMI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkatalaxmi flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATRAO WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRISAI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA PINDI MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sailakshmi mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri subrmanyam flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI DURGA BHAVANI WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara Air conditioning', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYA  MINI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmisrinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Sai meeseva', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BSNL', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N mastanbee', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'blow machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANJINAYULU WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagendra oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara flour and rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Srinivasa rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Theertha Mineral Water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saradhi mechanic works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri b somasekhara reddy', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI LALITHA PAPAD  VIJAYA DURGA FOODS AND PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Domestic flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMIREDDY floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganapathi Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p jain  jewellers', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Achari and Brothers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'madinaa welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SGS DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Rama oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bhanu Naik photo and Xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Shirdi Sai Rice Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mogilisetty ramana kumar ice company', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SBN BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri kankamaha lakshmi engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIVEKANANDA FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata seetha Rama ravva industry', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'lakshmi Sri Durga industries', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri veeranjaneya suppliers', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Roja Arc Welding works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MANJU SRI FURNITURE WOOD WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MOHAN OIL ROTORY', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAVEEN XEROX CENTRE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'phaneendra online services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROCKSAND MINERALS PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri ram lathe and welding workshop', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YOSHITA FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Gilan basha wooden works', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kpn mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri krishna digital', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJESHWARA HATCHERIES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'MATSA VENKATA SUBRAHMANYAM FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rain drop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA XEROX AND ONLINE CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAVITEJA SELLER MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'marada ramakrishna ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'santhoshimatha power printers', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANA LAKSHMI MODERN RICE  AND FLOOR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'siri tirumala suppliers and decarations', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M C Narasimhulu rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patel engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'M S printers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopi flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P SAMBASIVUDU', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai nadha water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bhagya Xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'padmasree xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ali saheb', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Munaswamy chettu oil rotary', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pavan steels', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'lakshmi modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji online services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHALEEL GRAPHICS OFFSET PRINTERS AND SCREENS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA FABRICATION WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'GSB Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkataramana rice fore mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pothuraju Foundary', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya refrigerator', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'korada ramarao floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Sailakshmi Ganapati Modern Binni Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vishwam industry', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LOOKS Beauty parlour and boutique and tattoos', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KALAVARI SHEET COVERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta Mike lighting and tent House', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai pooja technical services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE GAYATHRI HAIR IMPEX', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'srirangammatalli charitable trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JK tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhagiradha Foundation Water Plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sanjeeva Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tailor shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAGEWARARAO FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'manikanta Iron and steel design works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BALAJI RADIO SERVICING CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karthik Xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pattupogula Steels', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tailor shop B', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISWESWARARAO ELECTRICAL REPAIRING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar ice creams', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIMHADRI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai flourmill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Om Sakthi Flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'vijayalaxmi flourmill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhurga Devi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r paratha reddy', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SSV Xerox Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KURMIKA DEVI A TO Z WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'asiabee flour mill machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nandini flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh travels', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAMEELABI WOOD PLAINING', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri paidi thalli flourmill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MISALA JYOTHI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateshwar Durga Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tailor shop and sale readymade garment', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa welding works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MULTIPLLE PLASTICS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'National Akbhar Gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi srinivasa automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chelluru Apparao Blacksmith works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veeranjaneya flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkatasai printing press', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMU XEROX WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANKAR BYKE MECHANIC', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STAR ICE CANDY AND FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vinayaka flour and oil mills', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayan ice company', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THARUNYA COMMUNICATION', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GRACE HOME ELECTRICAL SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA POWDER COATINGS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MK bike mechanic works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kumar teddy purified water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya renewable energy systems', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chan floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari Krishna welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAM COMPUTECH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ambedkar carpentry works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri  sampath Durga battery works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PARAMESHWARA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'motor and motorcycle repair and painting works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakaratnambattery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHARATI INTERNET', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara  swamy  Metal  Industries', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B G BRAMHA ACHARI WOOD WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'INTERNET SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KALYANI SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pressline', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KJ industries', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'tent House', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MURALI FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meeseva service center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOPALA KRISHNA THEATER-BOMMARILLU THEATER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri KANAKAMAHALAXMI SEEDS AND PROCESSING UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'THYAGARAJULU WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sales and service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata pavana durga oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lupin water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shrushtee digitals', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A SUBRAMANYAM CHETTY ROTORY', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NEW Microtech Communications', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VEMULAMMA WATER INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Paradesimamba mini Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Raghava Timber Depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Vijaya Lakshmi naidu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'L Srinuvasarao', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ZBR Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Rajakrishna Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'imam foundry', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA VEERANJANAIYA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'siva prasananjaneya water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri devi digital systems private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '61']
[' Industry Name ', 'Sri lakshmi saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SS MILK PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Doulath Flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amma floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MODERN GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyam tent house and supplairsand lighting', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri vijayakrishna rice mil contractors co', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sana Satyanarayana engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkataramana flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'modern watch and waych', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICEMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'suresh kumar', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA COOL WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri bhavani sai engineering works and wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sania Technical Servicing Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ganesh timber depo and furniture', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Tipirneni Balaramayya memorial trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vishnu sai tyres', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G VARADARAJULU CHETTY OIL ROTARY AND FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka Durga engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATHI CREATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'new style tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manoj tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ashritha water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Manikanta Water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S K COOLING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI CATTLE FEED PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R K FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkataramana offse', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Subramanya Swami welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Indian oil corporation Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya Durga bike mechanics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NATASIMHULU tent house', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NANDI FOUNDATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANOHAR ONLINE SERVICES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANJI MOBILES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BUNNI GRINDERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sudha floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DSRajasekhar Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA Venkata Satyanarayana flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kranti Road Transport Pvt limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VANAVALAMMA CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'purna xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ram computers', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Suppliers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka mahalakshmi mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Harshitha internetcenter', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saimadhav Tailoring shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri ravichandra offset printers', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'eswar mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Noor Elahi Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'raja rajeswari binding', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWATI OFFSET PRINTERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's khaja cycle shope', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHM SHIP CARE', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SRINIVASA OIL GRINDER', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GUDDO TEXTILE AND TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ELAHI FLOOR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri raja venkateswara rice and flour  mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'malli battery and inverter electrical work', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri colors beauty parlour and training center', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Gas stove servicing center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sitaram Motors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'G Maruthamma Tailoring Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri krishna rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAGESWARA BINDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sasi  buty saloon', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Water Supplier', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AK LEAK STOP EXPERTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GSR Earth Movers and Engineerings', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'al mohammad automotive engg works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sankara Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Pruthvi Honda', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kaalimatha auto works', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sharif bike point', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chandra mohan bike garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BASHA WATER SERVICE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chotulla servicing centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jagadeesh garage', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Galimachine ramu', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chinna bike repairs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Brahmam gaari poundry', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinay Manikanta Mechanic Shop', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CP REDDY AUTOMOBILES', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VARAM AUTO CENTRE Service center', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '27']
[' Industry Name ', 'Sri Srinivasa saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing of Granite Cutting Tools', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sitharama motor rewinding works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA SHANKAR RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tailor shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'saipreethipoultryfarm', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vigneshwara purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shankar Paintings', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manjula Puncture shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'OM Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADEENA MOBILES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk Relience Tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkataramana printing and binding works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Swarna Motors', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai internet', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijetha rim bendings', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sitara Travels', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pallavi cyber need', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara tailoring materials', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balu computers and laptops', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mee seva', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amaravathi internet and xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'login', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tubestar oil and gas services pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bengaluru bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA ICE PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI RO WATER PURIFIER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai manikanta net and zerox', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANHOR SOUNDS AND DJ', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PARUCHURI ART PRINTERS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'The Best Dental lab', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara marble industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Naresh zari weaving', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sunil stickering and digital', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DATHA SAI SEAT COVERS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkatesh two wheeler mechanics', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hazarth Mahaboob Subhani rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Durga Flour and Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kode Rambabu', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MINIMINDS TECHNOLOGY SOLUTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Siva Sankar radio works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'prabhas xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'REDDY MOBILES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CSC center', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sita Ramanjaneya Oil and Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'INSTAKART SERVICE PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'A1 sprey painting works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dinesh tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GEETHA ICE COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mamatha purified drinking water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkat rao pindi millu', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'cycle shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syedsha Jewellery', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai tirumala water needs', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna Sai Coir Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI DEVI TECHNOLOGIES', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SURYA GRANITE', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sivasai graphics', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAIRAM CENTRING depo', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi narayana rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SWATCHANDA SEVA SAMSTHA', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sar chandra Environ solutions pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '19']
[' Industry Name ', 'Raju mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kiran net cafe', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa motors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri venkateshwara flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sesha sai oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Raghavulu oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Uday Satvision Private Limited', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Sujansri mineral water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI PRASANNA FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri janapriya communications', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '35']
[' Industry Name ', 'Sri sai flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Munna mechanical shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NARENDARA EARTH MOVERS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHANTI ONLINE SERVICES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AC care', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MOTHI DRINKING WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA AUTO XEROX', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai bindhu ladies tailors', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI GAYATHRI PRINTERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri karthikeya online service and jumbo', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAVARANG EMBORIDARY  WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AAMODA  PUBLICATIONS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'METAHELIX', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shiva Chamundeswari Electrical Works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANIKANTA POWER SERVICES', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sundaram industries private limited', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prabhu Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'siva mechanic service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaya Lakshmi Auto Service', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja Sekhar Bike Servicing Center', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Masthan valli baba auto garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed alla bakash', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sms service center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gouse auto garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi Two wheeler Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HERO MADEENA MOTORS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'M M auto guarage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandrasekhar puncher shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAIYAD SADIK  PUNCHER SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUBRA PUNCTURE SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagin Basha Two Wheeler mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bavalli electrician and two wheeler mechanic', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHOTU GARAGE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V V S ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mahathma Chari Mechanic Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN TWO WHEELAR  SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Laxmi Water Servicing Center', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Md Munna works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jeevan Bike Mechanics Works Duggirala', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Varshini bike care', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MUNEAYYA ENGG WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMANA ENGG WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venu Gopal welding works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sekhar bike mechanic works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dhanush Sai Automotives', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI JAYALAKSHMI BIKE REPAIR AND SERVICE POINT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JEELANI ENGINEERING AUTO WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAANYA SRI ELECTRIC VEHICLES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW NATIONAL AUTO GARAGE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nasarvali bike mechanic shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA CYCLE SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagul meera auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Vali Polish Workshop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing of Calibration Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'As power tools', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF ELECTRICAL TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai oilfield Equipments and Marine services Pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '81']
[' Industry Name ', 'sravya technology', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswsra oil Grinder', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'satya diesel services', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service of Engines and Turbines', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yuvaraj cable networks', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SOUJANYA BAG And Seat works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri godha devi water purifier plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SJS battery works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Murthy hair style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA GRAPHICS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAKSHITHA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KAKATHIYA ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sultan enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rajya lakshmi  industries', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'venkata lakshmi manikanta welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Jhani welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Krishna engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk Baji baba', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'prabhu mega foundary', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai Bhavani steel works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'rajanna welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'moksha sagnya welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', '1', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'mvk welding fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Durga welding work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'baji gas welding', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri chaithra purified water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Sewage Treatment Plant', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Technocon services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Ship repair service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ROYAL FIBERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Ship repair service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijaya lakshmi communication', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Software Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ZIYA COMPUTERS SALES AND SERVICES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Software Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'koushik diary farm', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storage Terminal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'modhumamba oil extraction', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storing and Handling of Edible OIl', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tent House', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mubarak suppliers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DADA SUPPLIERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karunamaya flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Testing services for equipment utilized in oil and Gas filed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rock star Fashions', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CHERISHMA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NETHRAVATHI TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA TAILORING TRAINING INSTITUTE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Raymonds tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GULZAR TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NEW JEEVAN MECHANICAL WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Kunkullamma Services', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dasari Gopi transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'kanumuri prabhudasu transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAJU GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SV TRACTOR GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abhi Car Travels', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Transport Hiring Services', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Uma Devi', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'UMAMAHESWARA COLD STORAGE PRIVATED LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'BHAGIRATHA mini Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WAREHOUSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Triveni Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WAREHOUSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHALAKAHMI DIGITAL COMMUNICATIONS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'EASY SEVA', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara internet', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VS Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri water systems', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lathe welding works and Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kranthi road transport', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'keerthana cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Mahaboob electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagamani mineral water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Two wheeler service', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Servicing and Repair of Two Wheelers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Fiza mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHALAPATHI GASES', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storage of LPG', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SR Mobile sales and services', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHANDRASEKHARA CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi internet', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms SREE POOJA COLD STORAGE', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Ganapathi xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS  NEW  NANDI  PRIYA  PIPE  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'venkat internet and travels', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'i digitals xerox zone', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Mini Rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'pothalaiah hair style', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Haripriya industries', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Tirupatamma transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parvati transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEMINI COLOR LAB', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sitharamanjaneya rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shaik Saidavali centering works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'CHERI ENTERTAINMENT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', '7STAR MOBILES AND ACCESSORIES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TAJ AIR CONDITIONERS AND REFRIGERATORS WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA BHA VANI CHARITABLE TRUST WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SURYA AQUA PRODUCTS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GK DIGITALS FLEX PRINTING', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRISAILA DARSHANAM TELEVISION AND BROADCASTING', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basha Networks', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA MEESEVA', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWATHI MINERAL WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Siva Sai purified Water', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sattar welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shabbeer welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIDHAR TENT HOUSE', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NAGOORVALLI WELDING WORKs', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri manikanta gas welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Parvathi welding work shop', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chand welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA WELDING WORKSHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sai srinivasa engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jai Sai Durga Bhavani  welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Injirapu Ramprasad', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BHARGAVI WELDING AND TURNING', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Masa prasanthi Tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ABDUL JABBAR FOUNDRY', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahaboob subhani', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Sree Malapeta Durgamma Welding work Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Chandeswari Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'SRI DURGA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SERVICING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NTR Srujala water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Sewage Treatment Plant', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'INDO MARINE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Ship repair service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'Anju SIIMA Technologies Private Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Software Development', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MOHAMMAD ECM REPAIR', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SOFTWARE DEVELOPMENT AND HARDWARE SUPPLY SUPPORT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Friends Cellular', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'SOFTWARE DEVELOPMENT AND HARDWARE SUPPLY SUPPORT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Medha Online services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Software Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'leelavathi xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Software Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KCC PAINT INDIA PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storage Terminal', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'VALLHABHA MILK PRODUCTS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storage Terminal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Venkatasaibaba oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storing and Handling of Edible OIl', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KRISHNAPATNAM OIL PACKING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Storing and Handling of Edible OIl', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BHARATH BUS BODY BUILDING', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Temporary storage of Fabricated Material (Bulk Storage Capacity)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHANDU BLASTING AND PANTING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Temporary storage of Fabricated Material (Bulk Storage Capacity)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri kumaraswamy tent house', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kamala tent house', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANJANEYA TENTHOUSE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lawanya tent House', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rajubabu tenthouse', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai tent House', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Harichandika tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Susma Sri tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruti suppliers', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AS tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai durga supplies', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'hema durga tent house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anusha Suppliers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'RAYALASEEMA SUPPLIERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TENT HOUSE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pasuluri Malliswari pindi mission', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Testing services for Equipment utilized in Oil and Gas field', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Industrial Oil And Gas NDT Services', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Testing services for equipment utilized in oil and Gas filed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'madeena gas stow and services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Testing services for equipment utilized in oil and Gas filed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Prasanna Nighties Center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shivakumar Gents Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkataratnam tailors', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anand tailors and training center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SHANTHI LADIES TAILORS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SWAGATH TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'New mumbai tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Siva Bharathi tailoring shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'textile training center', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Swamy transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA TRACTORS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sagar Miller mechanic shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Faizu Tractor mechanic', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Daniyelu transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIGNESWARA SPRAY PAINTING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMULAMMA TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI ENGINEERING Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIRDI SAI TRACTOR GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai Ram Tractor Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BABA FAKRUDDIN AUTO GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGALINGA CARPENTRY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENNELA TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANAPARTHI TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YARRAMOTHU TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhagyam Transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jyothi Transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagendram Transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHAVANI AUTO MOBILES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bandaru Srinivasa rao batteries works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'TRACTOR SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sambasiva Lorry Supply office', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Transport Hiring Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Puli Ademma Tractor Service', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Transport Hiring Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMADAS MOTOR TRANSPORT LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Transport Hiring Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ezra car travels', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Transport Hiring Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anjamma Transport', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Transport Hiring Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'arck and steel welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'UPS SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri kodandarama rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Anand chalk piece manufacturing unit', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bhagiratha Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tejashwini Rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'warehouse services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MARUTHI ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WAREHOUSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswaraindustries', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WAREHOUSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENNELA WHITES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI TEJA WATER SERVICE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI GANAPATHI WATER SERVICING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GAYATRI CAR WASH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Akram Basha Washing and Dry cleaning', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GreenTech Enviro Solutions', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Waste Management', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'MAJJI GOWRI PLASTIC', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Waste Management', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'TANZEEL PUMPSET WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TIRUMALA INDU LATHE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAINADH ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jhansi lakshmy engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'mohaboob engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Rao water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'water Pumping Station', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiridi sai society', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'water Pumping Station', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI PURIFIED WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'water Pumping Station', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAKOTESWARA MINERAL', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sreethan water supplies', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jeeva Jala water drops', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KODAMAGUNDLA JAYAMMA', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K R WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'balaji borewells', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRISAILA BRAHMARAMBA MALLIKARJUNA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Supriya Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA PARVATHI PACKAGED DRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'swasthik purifier drinking water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tatas water point', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vigneshwara filter water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'alivelamma water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balavikasa', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'suseela manchinoti padhakam', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla drinking water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri nadanampati Sri lakshmi ammavaru purifier water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KEERTHI WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajeev Jalasree Foundation', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Water Health India Pvt Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri harika water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai Durga industries', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Meghana aqua water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasam Purified Drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Parvathi Water Plant', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAA SAI WATER PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Sai Purufied Water Plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandralekha purified Drinking Water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Mahalakshmi Cooling And Mineral Water Plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa drinking water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMYA WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'japara pure products', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai baba mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AAM', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vasavi water foundation', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa water plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KVR mineral water plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MV FOUNDATION TRUST', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SR AQUA', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'IRA FOUNDATION', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'WaterPlant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krupa mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Koti Water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'water treatment plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shabeena industries', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SKS INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagavali water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dhani Setty Kavitha', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PULLITA WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kodandarama sahaja mineral water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rural water supply', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sahaja mineral water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shiridi Sai r o water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani minaral water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswarlu water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mineral water plant unit', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rural water supply and service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AMMU ICE CANDY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN BEVERAGES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sree mahalakshmi mineral water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWATCHA JAL MINARAL WATER PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DRINKING WATER MINERAL PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURAKSHA OZONIZED DRINKING WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jaladhara enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pranitha Water Purifier', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vashndara water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TAHEER MINERAL WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Varun water industries', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS AQUA WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rasool water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri pranathi purified drinking water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri bagiradha water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S H S C BOSE CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HS CHANDRA BOSE CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NSS Products', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yemala Chellaya Association', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'nookambika minaral water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balajee water agencies', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Aruna water solutions', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'star enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Anagani Charitable Trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raj water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PILLI PRAKESHRAO FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ILLA SATYANARAYANA FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mother Teresa charitable Trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL MINERAL WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Dharma Sai Aqua Hub', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Tirumala industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SANDYA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana Memorial Trust', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Meenakshi Seva Sangham', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ecofine water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI PRIYA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA MINERAL WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai  anjana water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BIJILI WATER PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAMATHA SOSIAL SERVICE ORGANISATION', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KKR Purified Drinking water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Chenna Kesava water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'katamaraju ganga bhavani mineral water plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nandini foundation', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SR FLAVOURRDDRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA IESWAYAMBIKA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS GANGA BHAVANI WATERPLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHINNA REDDY WATER PURIFIED PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi minarals and water foundation', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AR FILTER WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Mani sri charitable trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ULTRA WASTEX PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'mahmaood masood car service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ankala Parameswari water services', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DEVI DRY CLEANERS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SURESH SPEED CAR WASH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SATYA SIVA SHANKARA RAJAKA', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v Sudheer waste oil works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Waste Management', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASR Polemers', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Waste Management', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KONDAPALLY ENVIROTECH PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Waste Management', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '28']
[' Industry Name ', 'sri balaji engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VYSHNAVI WATER SERVICING CENTRE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sreedevi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R ammiraju  and company', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VEDHITHA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rayalaseema Pnemautic Technical Services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI SUDHA ELECTRICALS AND REWINDING SALES AND SERVICES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER MOTOR PUMPS REPAIR AND SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'UMA MAHESWARA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'water Pumping Station', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahima pravalika drinking water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'water Pumping Station', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pasam chenchu babu', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GOLDEN DROPS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAM WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jannatul mineral water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai ganga bhavani water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SSR drinking water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYATEJA ACQUA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'aquava minaral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'zam zam mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Pavani water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sivananarayana Guntur', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAIDU AQUA INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'cherry water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Koneru Venkayya Memorial trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bisbillawaterplant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Himasagar Flavoured Water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SERPANCH', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pure aqua', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISHNAVI WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai ram voluntary organization', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahalakshmi water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sahaja water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sai Lakshmi Industries', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANDRA WOMEN MAC LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJA WATER FOUNDATION', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA GANGA RO PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k chandra mohan water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAYUPUTRA MINERAL WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'star lake purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva ganga purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aqua tech', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Boddana ramu water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata sivareddy water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SaiSatya Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Amrutha Water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Y S R Purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Himalaya water plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Trust', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ravi Purified Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Degala suraiah water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Teja tech flavored water', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaihind water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lucky water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SSR WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai Ganga enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sejal aqua products', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BHAVYA MINERAL WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VENKATARAMANA PAMBHA WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUJALAAM MINERAL WATER PLANT KROVVIDI', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Intoori Keshava naidu water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'aaliya cool water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri data sai pure drinking water', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara R O water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAGYALAKSHMI WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi vinayaka industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri Rajeswari RO water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Someswara aqua industries', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARINITHA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N T R Sujala Pathakamu', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vegamamaba', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasudhara water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI HANUMAN WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyam Mineral Water', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kota Durga Mineral Water Plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANNAPURNA SEVA SANGAM', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Prasanna Waterplant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA MINERAL WATER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Water Foundation', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MARALAMAMBA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYANARAYANA REDDY FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAHILA SIVA SANTHOSI WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NANDI AQUA PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Uma maheshwari Purified Water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai Durga Water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JEEVANADHARA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOWTHAMI PURIFIED DRINKING WATER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madhura Manchineeru', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi narayana industries', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'shiva sai aquea', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'harsha vardhani enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramana water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y S RAJASEKHAR REDDY MEMORIAL TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree cavery packaged drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nandi foundation', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vamsi Krishna Social Services Organisation', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gollapalli Swamy mineral water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gowri Devi Water Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sainadha charitable trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mineral water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAMBASIVA MINERAL AQUA', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Meghana Foundation Charity Water Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sadrna charitable trust Sandrana RO purified drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA SAI MINERAL WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chandana mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sai Foundation Purified Drinking Water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Zam Zam Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara water plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bhadrachala Rama mineral water', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lashmi srinivasa  waterplant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srikar waterplant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NVR WATER PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BAPANAPALLI SATYANARAYANA CHARITABLE TRUST PACKAGED DRINKING WATER', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Water treatment plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva ganga mineral water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S D WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'guntreddi maheswararao', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kousalya Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGAMMATALLI WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed khan enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'adiseshareddy charitable trust RO water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'COCANADA HYGIENE PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI KAKUMANU MADHAVARAO CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A R janson industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SS WEIGH BRIDGE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WEIGH BRIDGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIRI TYRES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Wheel Alignment and Balancing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkteswara Xerox and Stationary', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ambika cyber needs', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hindu online and xerox center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar graphics', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Harathi  printers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jyoti internet  and xerox', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STUDENTS XEROX', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Narayana Rao xerox', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS Graphics', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madan digitals', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Amaze digital graphics', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'annapurna Comunications', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree graphics and DTP Xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shine net cafe and Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VEERA XEROX CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'siri xerox machine', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri seetharama paper agencies', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA COMPUTERS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bharath xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'joy abhisheik xerox center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri latha xerox shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shavali Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abu xerox and online service', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Asad Xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'national Xerox shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'POPULAR XEROX', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Murali Digital Studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thirupalu xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pavan Xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sowjanya Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Swaroop Internet and Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah online seva', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maruthi Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm nagamani', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mamatha Xerox centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kullayaswami Xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kiran Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENU GRAPHICS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya online', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mani xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga laser world', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shrija graphics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raju xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chand internet and xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Udayraj xerox center', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravanamma Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkat xerox and photos', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI XEROX SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parvathamma Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nag internet and xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'net center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saraswathi Xerox services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pujitha xerox Centre', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chinnayya inter net survice', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aravala Sanyasi naidu Xerox center', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI MAHESH DIGITAL GRAPHICS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'canon', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Nani Xerox services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'klr communucations', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'krishna veni xerox', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rainbow corner xerox services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Xerox and Photos', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shafi xerox shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Daniyal Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bhavani xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sriganesh xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lalitha printers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai ganesh xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai Vignesh xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavitha zeros shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Simhachalam  Xerox Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Teja xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'cyber club', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sankar cyber cafe', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'INDIAN NET CAFE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bujji xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adithya graphics', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sathish xerox and spiral binding', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABJI XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'T HEMAVATHI', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree lakshmi venkateswara Xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AARKE GRAPHICS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srilalitha parmeswari internet and xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'phaneendra internet', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SV Electronics', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMINARASIMHA SWAMY POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'P ESWARAMMA POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'venkatachalamaiah handloom industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'C Bhargavi Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Padmalatha Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Maruthi Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Nagarjuna handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Subbarayadu handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Ganapathi handi crafts and garments', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'VENKATA RAMUDU POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI BEERALINGESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Srikala power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'PANCHARATNA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'JAYARAM REDDY POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'K LAKSHMI PARVATHI POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Bolisetty Gurappa powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Anjan Reddy POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'VMC TAILORS SHOP', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'MUSTHAFA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Reddappabommisetty', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'K Nandhini Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Swarupa powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'K Nandini powerloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'mallikarjuna powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'TIRUMALA KONDAIAH POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Nagendraprasad power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'kuntumalla raja Sekhar power', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'u Devi powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'jinka chennaiah powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'gundluru Lakshmi power', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'prasad power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Venkata subbaiah powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'palla gangadhar powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'gangikuntla nagamunnemm power', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'palla saraswathi power', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'u Lakshmi Narayana', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'veerachandra Sekhar power', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'MS BHANU PRIYA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'narayanaay power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'khaja hand loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Thirumala kondu power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'sreelatha power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'saveethri power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'FORTUNE FABRIC SPA', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WASHING AND DRY CLEANING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi purified water', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasavi Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganga water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KOLLABATHULA KAMALA WATERPLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VPR AMRUTA DARA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VASUDHA FOUNDATION WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bhargavi garments', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANVS GANGA MINERAL WATER AND COOL WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Chitravathi water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BINDU PURIFIED DRINKING WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANR INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vijaya jyothi mineral water', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK Water Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RABIA MINERAL WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Weigh Bridge', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WEIGH BRIDGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri siri veerahanuman weigh  bridge', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WEIGH BRIDGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sree Varadaraja Swamy Wheel Care Centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Wheel Alignment and Balancing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jnadeep xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bharathi powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'madhavi handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'sunitha handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'eswar costal  techno links', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Wheel Alignment and Balancing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sandhya xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Malli inter net   and xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shekhar graphics', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Govinda rao xeeox', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramana printers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'universal internet', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree venkateswara computers services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shyamala digital xerox shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PSK Xerox Center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Star Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Areyas digitals', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Praveen xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Santhi Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Santosh Internet and Zerox', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eswara Xerox Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venk atramanaxeroxcenter', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Manjunatha Xerox Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mothukuri lakshmidevi power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Syed online and Xerox center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SVR XEROX AND STUDIO', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'RUSHI INTERNET XEROX and ONLINE SERVICES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai cloth and cell zone', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amulya Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Likhit and Lithu online services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri anjaneya xexox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mehsin xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mk online services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hari Digital', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'REDDY XEROX CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri maruthi Xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Nanda Kishore xerox center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SV XEROX AND LAMINATION', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kunda Saraswathi', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'ISH XEROX CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DADA XEROX', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chennamma power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'sri surya communications', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ansar Xerox Center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kalpitha Xerox Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'khadheerxerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Venkateswara service center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi chennakesava xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGESH XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Navigation internet center', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lavanya Xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ambika internt', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri modhamamba photo studio and xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Simhachalam Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Devid Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA ONLINE SERVICES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vifaa Online work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Matyamadugula internet sercices', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH INTERNET', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAYATRI BOOKS AND XEROX', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESHWARA XEROX CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Teja xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'gayathri Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kiran  Xerox and net shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'naidu internet and Xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vikram zerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI INTERNET XEROX', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Modhasai internet and zerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chaitanya xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gayathri Xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Modha Shesh Sai Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri modhamambha Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Teja net nd Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'xerox machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Masala tele links', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Meghana Xerox and spiral binding', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya net world', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Teja Net world', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CYBER WORLD COMPUTER SALES AND SERVICE NET AND XEROX CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhai Internet', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sudarshana printers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'COMPUTER NET CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUNIS PERFECTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RAM OFFSET PRINTERS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sravanyatypeandphotostat', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Devi Akka Mahalakshmi', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'TVR SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Sree Rukmini Silk Emporium', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI VIJAYA SILK SARRES', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'gayatri whites', ' District Name ', 'Krishna', ' Sector Name ', 'SILK']
[' Industry Name ', 'Pothulayyaswamy Dying works', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'CHAITHANYA LAKSHMI POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'SUBBARAYUDU power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Janaki powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'KRISHNAS POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Rajeswari hand loom', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Praveen slik house', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'nagalakshmi hand looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'sri chowdeswari powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'UMMADISETTY VEERA DEVI', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'sri gowri silk sarees', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'B Siviah', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'USHA SILK EMPORIUM', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'jayarama silk twisting', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'saraswati powelooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'narayana power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Sri Nandavarapu chowdeswari power handlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'SREERAMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'l nagaraju powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'puttha veeraiah powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'jaladurgam handloome', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'padmavathi  hand looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'lalithadevi power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Ramudu power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'subbalakshmi power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'GANGA NET CAFE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'XEROX AND XEROX RC MACHINES SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mallaiah power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'SLNS powerloom industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'thulasi devi power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'shaahi priya looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'B VENKATA SUDHA POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'P VIJAYA LAKSHMI POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'CHOWDAM SUBBARAYUDU POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'varalakshmi powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Yugandhar Silks POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'chinnabalasubbana', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'venkateswarlu mothukuru handloom silks', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'narayanaay handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'kondappa handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'powerloom related', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'satyasai tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SILK']
[' Industry Name ', 'vinayaka powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Av sadanandam powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'S ANJANIDEVI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'N BHAGYALAKSHMI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'S R POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'kadapa sankar power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'M S VASUDEVA REDDY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'CG Reddeppa handlooms puresliks sarees', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'suresh small scale powerloom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'CHOWDESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'K  SARADHA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'B SIVANANDA REDDY POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'K NANDINI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI CHOWDESHWARI POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Nallapareddy power loom industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'lokeswararao silk reeling industry', ' District Name ', 'Krishna', ' Sector Name ', 'SILK']
[' Industry Name ', 'Narendra power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Ravi Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Y Ugandhar Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Jayachandra Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SURYA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'NAGARAJA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'CHANDANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'BOMMALA ANJANEYULU SONS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'MS NANDINI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'G SATHYANARAYANA SILKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Gangadra Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'MADDANA LEELAVATHI- Proprietor of MADHAVAIAH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Narayanaswamy handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SREE UMA MAHESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Suresh Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'savithri  hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'KOMAL POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Srinivas Hand Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Nitya handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Ramesh handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Pawan Kumar Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Venkatramana Handloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI SAHASRA SILKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'GEETHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SREE MUKUNDA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Lakshmidevi handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'madhavi handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI RAMALINGESWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SAI LOHITH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'adi Prasad colour dying works', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Devi Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI KANAKADURGA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Anitha Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI HANUMAN POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Suguna Power Looms Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'praneetha sai handloom industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Venkataramana handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'K  Balu handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Dasari Kumar handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'nagalakshmi handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'GNAPIKA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Tirupathamma handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Chandrakala Power Handlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Prasad Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Anjineyulu power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'ANJANEYA SWAMY POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'REEHAN TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'K Raghavedra Silk Sarees', ' District Name ', 'Kurnool', ' Sector Name ', 'SILK']
[' Industry Name ', 'Chandra Uppada Sarees', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'BABA FAQRUDDIN SILK INDS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'V SHAMMER BASHA SILK INDS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Anjineyaswami Chaaki Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'sampurna silk products', ' District Name ', 'Krishna', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sama muneiah handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishna powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'subramanyam handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sidanni markandeyulu handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Revathi sarees weaving unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'P Manohar', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 's babu saheb silk reeling unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'savuthramma', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ranjithkumar powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Rammohanpowerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Ramasubbaiah powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkataramana power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'lakshmi handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SUSEELA A SATHYANARAYANA HAND LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'U seshaiah silks', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subbarayudu powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mallikarjun handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUKUMARI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bhaskarpowerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k venkataramana', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gayathri handloom silk sarees', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY SILK TWISTING', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sankaraiah silk processing', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateshwara silks', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'reddapanaidu power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAPARE SILK TWISTING FACTORY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PROBHU SILK TWISTING MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasulu handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata ramana handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishnaiah handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJULA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'REDDEMMA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'G umadevi  silk manufacturing', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'muniswami handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVANANDHA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'R LOKESH POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'pure Handloom silk sarees', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'muni krishnaiah handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANSARI SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'RAMAKRISHNA SILK TWISTING', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Ramana handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAGANNADHAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'hema sundar babu handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kesavulu handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nirmala handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARATH SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'subbamma handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D KAIF SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'AVINASH SILKS TWISTING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JAMEER SILK WORK', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CR CHARKA REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SALEEM SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'ANNAPURNA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri shakmbari silk Twisting factory', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARSHAD SILK REELING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'TABASUM SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri bugga ramalingeswara silks', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'PATAN BABA FAKRUDDIN SILK INDS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gramodyoga Khadi Silk Society', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '26']
[' Industry Name ', 'SRI SHIRIDI SAI SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'CHAND SILK TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURYA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HAZEERA SILK TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'usman silk industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'RAHAMATH SILK REELING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 's jaheer reeling unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'NIHA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'BASHA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHANMUR SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RESHMA REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'NP AZMATHULLA SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'MAHABOOB BASHA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMINARASIMHA SWAMY SILK REELING AND TWISTING  UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '29']
[' Industry Name ', 'SHAIK SHABEER AHMED SILK UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'ASIF SILk INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAMIULLA C R CHARKA REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SSCB SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'KHASEM SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CR CHARAKA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AFZAL SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KHAJA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'N A SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAB SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SUPRIYA WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SLR SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'VELPULA ANKAMMA RAO WATER SUPPLY SERVICES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAXMI RAMULU PACKAGE DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'WATER SUPPLY TO PUBLIC FOR DRINKING PURPOSES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'MANJUNATH POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'R R POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'PALLA CHINNA VARADAIAH POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'T VENKATESWARLU POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'chamundeswari powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'PALLA BALA VARADAIAH POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Aruna devi powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'SREE MALKUMA POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'chowdaiah powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Bharathi Silk POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Sri kokila dyeing works', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'bharathi handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Surendra powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'KAMAKSHI SILK FABRICS', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'NOOR BASHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'tailaring shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SILK']
[' Industry Name ', 'Sri chowdeswari silks', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'VIJAYALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'MS NEELAKANTESWARA POWER LOMM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'DHANALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'LALITHA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Maruthi Power Looms Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Srisukanya powerlooms units', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'RAJAKUMARI POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'power loom weaver', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'M S ANAND REDDY POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Soma subramanyam powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'PARVATHI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SMSK SILKS', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'BABY SMALL SCALL POWER LOOM UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'MALLESWARI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Shiva Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'K RAMESH POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'VSR SILKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'KHAJAPEER SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SUBHADRA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'PADMAVATHI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Devi Varaprasad Hand Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Parameswara Silk Sarees', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'KAVITHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'eswarayya color dying works', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'JAYANTHI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'M s satishchandra small scale power loom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI DODAGATTESWARA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'PALLA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'K L N Swamy powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Adimurthi handlooms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Durga hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'GANGA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI RAJANARASIMHA TRADERS AND SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Ramesh Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI ANJANEYA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'EZAZ SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUBBARAYUDU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'BALAKRISHNA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'R IRFAN SILK TWISTING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'ANJANEYULU D', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'MUBEENA SILKM INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'ANJINEYULU POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SRINIVASA POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'DAKSHITHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'SUJATHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'MANJUNATHA SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Thrinethra powerlooms unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S INTHIYAZ C R CHARKHA REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SILK REELING', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MANJUNATH POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'santharao handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kodavala malleswari handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ganakala munendra handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kodavala muni Sankar handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANAMMA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nagaraja power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K CHANDRASEKHAR powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nageswaramma powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUBARAK POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ravindra Power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Manjunatha power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K durgadevi', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahesh power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sadasiva powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SMKSILK TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'subba narasimhulu handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yugandar power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'eswaramma handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kotaiah handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sujatha power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMED SUBHANI SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'balaji handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'balaji handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'muniratnam handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M REHANA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'LAKSHMI SANTHOSHIMATHA SILK REELING UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Gangadhar handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D SAMEERA SILK REELING  TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswarlu handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDANA SILKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI venkateswara silk twisting factory', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MOHANLAL CO', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'chalapathirao silk reeling industry', ' District Name ', 'Krishna', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADEENA SILK UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'bhagyamma handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijayakumar Hand Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ARFATH SILK REELING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'RAHAMATHULLA SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'HASEN SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G N SILK REELING AND TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BABA TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'IMRAN SILK MERCHANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'AARYA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rajpurna silk industries', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Eduguri Baskar Reddy', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AJAJ SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'S MAHABOOB BASHA SILK INDS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'K N M SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JABEER SILK  INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'faizunnesa silk industres', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VYSHNAVI SILK REELING AND TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '26']
[' Industry Name ', 'REHANA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'AHAD SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'AZM SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SHAFIULLA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ELIYAZ SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'SREE NEELAKANTESWARA SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'R  SIRAJ SILK REELING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SABHIRA SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BSRI SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'shaik sadiq silk reeling unit', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'YA GHOUSE SILK UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'FBS SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'SHAIK NISAR AHMED SILK INDS', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'S R S  SILK REELING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'TASLEEM SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'S M B SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'G S SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SHAIK DILSHAD SILK UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'NIMRA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BPR SILK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ZAREENA SILK UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SAI RAGHAVENDRA APPARELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SILK']
[' Industry Name ', 'Sreenivasulu Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'mani power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'adinarayana powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'venkatesh power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'Rama chandra', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK']
[' Industry Name ', 'ASRA Hand Embroidering', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Syed Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Reddemma Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Hydervali Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Nagaraju Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Reddy sekhar Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'rangappa powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'Imam hussain looms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'krupanandam small scale power loom', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'baby small scale power loom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'sarojamma hand loom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'jameela hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'prasad power loom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'kashimu', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'c Narendra Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'seetharamaiah Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri jagannatha silks and sarees', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Mahesh babu handloom works', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHANKAR ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P R MALLIKA COTTON FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'janapati hymavathi loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kumari loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'suseela loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagaraja loom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pandurangaiah handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Murali handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'TN BALU TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BSS SPUN SILK PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Venkateswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mallikarjunareddy silks', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'RAMYA GARMENTS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'venkateswara silk showroom', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Harika cut pieces', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'komala cut pieces', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOMBAY TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri diviya fashions', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lalita cut pieces', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vanitha sarees', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vigneswara cut pieces', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi sarees and dress materials', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalakshmi cut pieces', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MMR FASHIONS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'babu gents wear', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pushpa fashions', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVITEJA TEXTILE', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V P LAKSHMI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Krishnaveni garments', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJUNATHA HANDLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'excellent ladies tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P G JOTHI KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sharnya ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KARUNA TAILORS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Latha Tailoring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B G POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhana Lakshmi ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vinod ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Archana Talioring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasavi Tailoring Shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Manjunatha powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HABIB TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Varalakshmi Talioring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Hemalatha silk sarees', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sunil tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sitarama garments', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMYA ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Raju tailoring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sony ladies tailoring', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sravanthi towels factory', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai tailoring unit', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rama linga chowdeswari fabrics', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RSN POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'THOUDACHARI TAILORS', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SBR TAILOR SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUNNY FASHION TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kullayappa Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata subbaiah tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ABC FASHIONS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '27']
[' Industry Name ', 'N S Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kalyani ladies tilor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mega tilors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Amiyarkuppam Moorthy winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mallaiah power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A C kanniyappamodali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vishnu sarees design manufacture and boutigue', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Kushi tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P G Dhayalan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madhu tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CITY LIFE TAILOR SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Eeswar tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Jaya Lakshmi looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A MADHUSUDHAN REDDY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G S NARASIMHA MURTHY TAILOR SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh hand looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'swami tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM taylor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkatrao tailor', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkata Laksmi cottage silk', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVYA GARMETS INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vijayalakshmi tailoring shop', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V k kesavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'agasthya ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'FINE TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'zahuroodin tailor shop', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'APNA tailours', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N VOORAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Rajendran powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ganesh Tailoring', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'V C Paramasivam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srinivas handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VENU TAILORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'eswaraiah handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E Parthiban', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAMESH TAILORS SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R E VISWANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R KUPPASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata ramaiah handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Priya Tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sattibabu tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A SHIVALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sreenivasa tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SM Ponnappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'EMMANUEL HANDI CRAFTS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'R A MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dharmabrothers tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI TAILOR', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ponnambalam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jaya chandran traders', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANUS BOUTIQUE', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GOLDEN TAILORS', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'youth tailor shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vasu tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vanthala Gnanajyothi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Galuguboyina swami', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramu tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'aadhivirat tailoring shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satish Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chellarao Tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Prasanna fashion Designing and Garments Making', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'K VISWANATHAM CHETTY CLOTHES MERCHANTS AND MACHING CENTRE', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BEE APPARELS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'C A Kovalan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HARITHA TEXTILES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NISHA DESIGNS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '711']
[' Industry Name ', 'ESWAR GENTS TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'uday sports wear', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SIRI GAYATHRI TEXTILES', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', '7 Colours Boutique', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G SGovindan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C P Mayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'IMAGE Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S GUNASEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C Anandan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Govindarajulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Thyagarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shanmuga ladies tailoring works', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Gopi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'L Sureshreddy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Thirumalesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SL CREATION', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Krishna Veni Readymade and Garments', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'latha enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tulasi Sarees', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siri fabrics', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'swarna latha spintex', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'GO GREEN GARMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'mens look tailor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A G FASHIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'bala vengal reddy weavering', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ramu tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Anand tailors', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'new unique passion tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tom fashions', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'international clothing company 01', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '670']
[' Industry Name ', 'KULLI TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ASHA TAILORING SHOP', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJUNADH garments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Mukthapuram Ravikumar', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'krtk tailoring shop', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LN APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PADMAVATHI LADIES TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi narasimha tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NIZY FASHION', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'V Amman Fashion Garments', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Madhavi Fashion Botic', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KGN GARMENT MAKING UNIT', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI MOTHERS GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Thatavarthi Apparels', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'AMR GARMENTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'New Life Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siddhu Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasrsha Fashions', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VISWA FASHION TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KEERTHANA GARMENTS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Shobha Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAXMIDEVI TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivas tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ewaramma garments', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW STAR TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MURALI KRISHNA GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DEEPA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vamsi Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAKEER NITIES CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bonds tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai safety solutions', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'usharani ladies tailor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narasamma Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateshwara Nitties Center', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'New Style Ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SKVV cotton nittyies wear', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'S R Uniforms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KVR TRADERS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ranso Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'S MAHABOOB PEERA INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri nandikeshavaa garments', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Silk Reeling  Twisting', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAIFULLA SILK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S F B  silk reeling industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'Silk Reeling and Twisting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'venkataswamy Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Siva Sankar handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'kantamma hand loom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'chandrahasudu hand loom', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Tialaring machine', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SILK']
[' Industry Name ', 'satyanarayana small scale power loom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'sridevi small scale power loom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'nagarju handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK']
[' Industry Name ', 'bagyalakshmi powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmipati Silks and Sarees', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK']
[' Industry Name ', 'Pavani small scale power loom unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SILK']
[' Industry Name ', 'PVENKANNA AND CO PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'subbarayudu powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagarani', ' District Name ', 'Kadapa', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chinna narayana handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Koti threadballs work', ' District Name ', 'Guntur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'SILK', ' Activity Name ', 'SILK YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Seela Venkataramana handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nagur bee ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balakrishna weavers', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI READYMADES AND TAILORING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'REDDAMMA TAILORING CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saptavarna fashions', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mashallah tailoring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kantarao tailoring shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AYASYA CLOTHES SHOE ROOM', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandu tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MahaLakshmi tailoring', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Saraswathi Handlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SHOBHA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Jagadeeson textiles', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkata masthan  selling textails', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkatesh Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R TAILORS SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PAVANI LADIES TAILORING', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DG TAILORS SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAHAMMADIYA BUTTON HOSE', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'new city tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'obulesu silks', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RR Taj ladies tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madhusudhan Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATRAMU LAVANYA', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE GAMINI KNITWEAR CLOTHING', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SUBRAMANYAM WINDING INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Chowdam parvathi looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sharada looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SSV CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SMILY LADIES TAILOR SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M JAYA PRAKASH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vishnu tilors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SHANKARA CHARI TAILORING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YASEEN TAILORS SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'friends tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'basavakota paradesi twisting mill', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sreenivasa tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AL AMIN TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'K R Sudha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FUTURE FIRST TEXTILES INDIA', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'AJANTA TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S V  Babu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C G Bhaskar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW LUCKY LADIES FASHIONS TAILORING', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW MODEL TAILORS SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bhagyavathi Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YADDULA CHALAPATHI HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V RAMASWAMY see', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G ARAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S LAKSHMANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V MANIGANDAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CLASSIC TAILORS SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SAI CHANDRA TEXTILES', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GAYATRI CLOTHING  READYMADE COMPANY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SALLA KESAVULU SAREES DESIGNER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'simhachalam tailoring', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJESH TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N J GARMENTS', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'D N shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Govindarajulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Balakrishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S PShanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V Dandapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narayanaswsmy weavering unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateshulu weavering unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Meghavarnam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V Arunachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Sorakayulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V E Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJULA READYMADE GARMENTS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S R TEXTILES', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'S Karthikeyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vivek Garments', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'BVM DRESS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Umanthi textiles and tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ITHIHA FASHIONS AND LIFESTYLE', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K R GOVINDHARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dinesh creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri kanaka durga ladies tailor and embroidery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS JYOTHI GARMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KVGS CLOTH TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi sai Rao tailoring shop', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Aruna fashions', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JP textiles', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI MANJUNATHA POWERLOOMS TEXTILES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'KHASIM BEE LADIES TAILORS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'INDIRA SAREES MANUFACTURING  AMP SAREE MATERIAL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NM Textiles', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUMATHI TAILORINGS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GOWRI LADIES CORNER', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI GANESH LADIES TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SND GARMENTS', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'geetha garments', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MILUN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S SHAMSHAD TAILORING SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'malleswari readymade garments', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUBRAMANYAM HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'LAKSHMIDEVI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sujata industry', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata Lakshmi garments', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KIRTANA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KGI Clothing Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '141']
[' Industry Name ', 'MSR Garments Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '95']
[' Industry Name ', 'Shalam tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amaravathi ladies tailor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHAVENI GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Lalitha Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUJATHAMMA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Safa Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARASIDDHI VINAYAKA TEXTILES', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'new venus tailor shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'fashion in womens', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Ammaji Tailoring', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'ALL TYPES OF TEXTILE GARMENTS CLOTH ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asma Ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'usha ladies tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balu tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Meheraj Fashions Ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Royal Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANJANEYA DRESS MFG CO', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sakthi garments and textiles', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SREE LAKSHMI NIGHTY WARE', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Classic Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Krazy fashions', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAMESH TAILOURS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tailor shop1', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'New Arun Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KOMALA LADIES TAILORING', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SLN CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mangas Boutique', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Arun Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BIJJAM GARMENTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI GANESH APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LADY LINE LADIES TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ROSHAN ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'rajani tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Tailoring', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGENDRA GENTS TAILORING', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sivasai tailoring shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYASREE CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUBRAMANYAM GARMENT', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RR SPORTS WEAR pvt limited', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'RM Creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'FAME FASHIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIVAN APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI DRESSES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIDDESWARA GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri sai tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA PRABHA APPEARELALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'Sri Mounika Creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Murthi creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SSP BAGS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MURALI GARMENTS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Chandamama Designs Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Naresh  tailors and garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'ANJALI GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KTM GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SR CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'VAASU ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SAHASRA APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'SUNRISE APPARELS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI SAI CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sree Sree Dyeing unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LINGARAJU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOTIPI CHOWDESWARI DEVI PRASANNA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHOWDESWARI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S NARAYANA SWAMY REDDY  PEDDA VENKAT REDDY HAND LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VENKATALAKSHMI POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Lakshmi Venteswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Narasimha Swamy powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'THANUJA POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K RAMADEVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MS HARINATHA REDDY POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Girish Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Shobharani Creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KOMYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'S R Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ANJINAPPA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANKAR POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagaraju silks', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SATYANARAYANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rathnamaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Narasaiah power handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYA CHANDRA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ashok Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Anandappa Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AMAR TAILORS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'somashekar power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAGHUNATH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMIi NARASIMHA POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hanumantappa power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LIKITHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'umadevi powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakumari power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI NARASIMHA SWAMI POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Munni Ladies tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHRUTHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aruna silk reiling unit', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI ANJINEYAM POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESWARA POWERLOOMS ADINARAYANA SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'srinivasa power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VINAYAKA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVENDRA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MOULALI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NANDHINI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SWAMI POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANANTHARAJU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D L NAGARAJU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMESH POWER LOOMSL INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREENIVASA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Suvarna Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vyshnavi Powerlooms Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE Annapurneswari powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SURESH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dyamasipallaiah Swamy Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THULASI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE SRINIVASULU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KURRA SRIDEVI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'BHASKAR POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Shanmuka Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARSHINI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MALLIKARJUNA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Subramanyeswara Swamy powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI PRASANNA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI CHOWDESWARIDEVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MADEENA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Chakravarthi power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRIYADARSHINI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANJANEYA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MALLIKARJUNA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'BABAIAH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VARADAPPA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'alla silk power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'SREE VARADAPPA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHOWDESWARI POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMINARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ADINARAYANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DHANALAKSHMI FABRICS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE Vishnu powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chirangeevi powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATESWARA POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ADINARAYANA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA POWER LOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAMESH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI NARASIMHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JR silk sarress', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JWAJALYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAKUNDRAIDU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOWMYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS NAGAVENI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K G SHANKAR POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SOWMYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHARMILA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANURADHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARSHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkateshwara power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KARTHIKEYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANGAMMATHALLI POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATESHWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRANAVI SREE POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ASHAWTHNARAYANA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ABHINAYA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THIRUMALESHA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJESH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CHOWDESWARI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI CHOWDESWARI DEVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANANDHAPPA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VINAYAKA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PEDAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PADMAVATHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHOWDESWARI POWER LOOMs', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANGHABHAVANI POWER LOMMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARISH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jayalakshmi small scale power loom unti', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHOWDESWARI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALIVELAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NAGARATHNAMMA POPWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOWBHAGYA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERA JINNAIAH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MANUNATHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LALITHESH REDDY POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MARUTHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VINAYAKA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARENDRA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VEERA BHADRAK SWAMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M HASINI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THIRUMALESH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI VIGNESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K BHAGYALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THANU SAREES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MALAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VINAYAKA LAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nithya hasini powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BABA FAKRUDDIN POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARASIMHA Power loom Factory', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MAHESWARI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADHIRANGAIAH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI DEVA POWERLOOM INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LATHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUMALATHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RUDAKAMMA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pritika hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'RASOOL BEE POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BANU PRAKASH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KAVITHA POWER LOOMS AND SILK SAREES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHANDRASHEKAR POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shirisaala Lakshmi', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'annapurneswari power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Suri Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI POWERLOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI BEERA  LINGESWARA SWAMY POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAINATH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KAVITHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE PANDURANGA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Shirdi Sai Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MAHESH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ADINARAYANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KOMALA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SABJAN POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BEERE RAMACHANDRA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VINAYAKA POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SAI VINAYAKA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JJ Enterprises', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Baby Diapers & Sanitary Napkins', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TORAY INDUSTRIES INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Baby Diapers & Sanitary Napkins', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '103']
[' Industry Name ', 'HEMA SCREEN PRINTING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'CLOTH DRYING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshminarasimha textile', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'CLOTH DRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GNANASHEKAR FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'CLOTH DRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'pratap industries', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'CLOTH DRYING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'SOFTEL COIR PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COIR FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI AGENCIES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COIR FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AARKAY INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COIR FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srivaari fabric', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COIR FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kamakshi fabrics', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COIR FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi narayana cotton wicks', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton and woolen hosiery making (SSI & cottage industries)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sriramulu sarees works', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton and woolen hosiery making (SSI & cottage industries)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ramanjineylu weavering unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton and woolen hosiery making (SSI & cottage industries)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAYURI WASTE COTTON', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton and woolen hosiery making (SSI & cottage industries)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JAI DURGA AND CO', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'swarna  and co', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'ms Indian lace crafts', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M G PRAKASH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Krishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D C RITA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Perumal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Muniyan K', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G KARHIKEYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SREENIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Gangaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'New Nataraj Tailor shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Woodland tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHINTEX APPAREL PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Teenage Fashions Ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VISIT TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Harish apparels', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHOBHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramdut apparels industry Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '46']
[' Industry Name ', 'DARSHAN GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'AJAY enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '31']
[' Industry Name ', 'SIVAIAH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'keerthi bodagala design studio', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SAHAN FASHIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JYOTHI GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAYMONDS TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VARIKUNTLA LADIES TAILOR', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJU JOB WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'C N LADIES TAILORING CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TEJ INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '50']
[' Industry Name ', 'FASHION FISH INTERNATIONAL', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '22']
[' Industry Name ', 'Sri Siddi Vinayaka Dresses', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Surya readymade graments', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BASHA TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Swastikas Enterprises', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'GANGA POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW FAIZ GARMENT', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Anjali powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'S Garments', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SV CREATIONS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'noor garments', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJA RAJESWARI GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DAMODHARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUBBALAKSHMI GARMENTS AND  AMP  HANDCRAFTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'SANI APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri saraswathi creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'DHARMAVATHI POWERLOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'UNITED APPAREL SOLUTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'AKHILANDESWARI POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SPARK STUDIO', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Teejay India Private Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '902']
[' Industry Name ', 'VOLTA FASHIONS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'apparel and garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '147']
[' Industry Name ', 'CHOWDESHWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAJAMMA POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LASKHMIKANTH POWERLOMMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHOWDESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHANMUKA SAI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANUSHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'n anand power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bheem shetty shankar power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shobha Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VINAYAKA POWER LOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANJUM POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMANJULAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M sadasivam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIVANANDISH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NARASIMHA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JALAJA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THIRAITHASHAKAM POWERLOOM INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWAEA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASULU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOWRI SHANKAR POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREENIVASULU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi cottage industry', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Anil power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAVII POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMANA CHARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHOWDESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LOKANATH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREENIVASA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VARADAPPA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENUGOPAL POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Y GOPAL POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BEERALINGESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMIDEVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'L S V POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'CHOWDESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MAHESWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LEELAVATHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGADHARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yaswanth Powerlooms Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAMESH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANOJ POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sreesaila silk industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KEERTHANA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BAIRAVESHWARA POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ARUNKUMAR POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PEDHAMMA THALLI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VINAYAKA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PEDDAMMA SWAMY PRASANNA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAGAR POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PRANOW AADITHYA POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'alla bedding house', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton and woolen hosiery making (SSI & cottage industries)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANJUNATH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ABHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEDANTH NAIDU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARGAVA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARASIMHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAIESWAR POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VYSHANVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYAN POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sudhakar Text Tails', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NAGARATNAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DUTTA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARVATHI TEXTILES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mylara  Lingeswara power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI VENKATESH SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRAKASH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREEJA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS SANKARAPPA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHARAN LAKSHMI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANJULA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ARIVENI HANDICRAFTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton and woolen hosiery making (SSI & cottage industries)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUJATHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS BALAJI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Art Silk Sarees using Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SDS HYGIENIC LAUNDRY AND DRY CLEANERS', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'CLOTH DRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Omega laundry  works', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'CLOTH DRYING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'excel handicrafts', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Lalitha Cotton Mills PVT LTD', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri JJ Lakshmi and co', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'DANTESWARI CLOTH MERCHANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R Dahakshana Moorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON CROCHET', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N M ARMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SV Ganesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V Ganesha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SIVAGAMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A D SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Gangaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D L SUSEELA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Chokkalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Vadudebam modhaliar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A RAMURTHY MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N NAGARATNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GC Lokanadam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Narayanaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N A Manikyam powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D V Babu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Govindrajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S PARTHIBAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G PERUMAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M VENKATA MUNI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N R Narayanaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Annamala', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R KAILASAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V G NAMASIVAYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N PERUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K KUPPUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V G MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K KUMARASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Muniyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DE Krishnaveni', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MR Chidambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P MAAILAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K DANDAPANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M Sadhasivam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NG Rangaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'thangula laxmayya', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P MASILAMANI MUDALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Parvathamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Varadharaju', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Sampath', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p subramanyam power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MK VENKATESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P SRINIVASULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Anandhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Jayavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D Dandapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A MANGAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N KODANDA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P MASILAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G SYAMALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N E ANANTHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V SANJEEVAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P  A VENKATESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Valliamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lalitanandha Trading Company', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M S LINGAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'secretary Parvathi workers', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T E Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N KUMARAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T NTESA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM Ellappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA POWELOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B E JAYALAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Paradesi Modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S GOVINDHARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K SUNDARA RAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S NAGAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V KUPPASWAMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PN Vasantha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DD Ganapathy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D SREENIVASULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V R NARAYANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S BHUVANESWAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K NAGALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AK Narayanaswsmy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M NARASIMHA MODALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MG Venkatachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V KAILASAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N DEVARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A NARASIMHA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Jayakumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MA Salamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M L MURUGA SAMUDA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Nagarathanam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RK Lakshamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S KUMARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N Yanadi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATALAKSHMI POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D Manikyam modaliPowerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C D kanniappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SADASIVA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B NARAYANASWAMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K Jayavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A THIRUNAKARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RK Lakshamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DD Rajamanikyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Sekher', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M L RAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G DEVANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S Nagaraju', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Narayanaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G ANNADORAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R DEVARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B E JAYALAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M JAGANADAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PALLA LAKSHMI DEVI', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ballari Devan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Jagannadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PS kadi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S  SELVA RAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SG Babu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DP Muneppan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S N Madavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Nagappa Modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R J RAVANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T P SAMPATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R AANAND', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N C KUPPASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MG Elumali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Radhakrishnan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M KANIAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C k munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RUKSANA POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DM Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M RAMASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Muthuvelu Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Muthammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SEETHAKUPPASWAMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N MURUGESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D R KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Munaswamy modal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S ARASAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M HAMSAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Laxshmammaal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Ramaswamy power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dharmalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D NARAYANASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K MADHIALGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N VADIVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N kamalavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ANNASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Srisharam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D PARVATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S Venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D R Nagalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dasarinagaratnam Babi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N CHIDAMBAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Annamalai Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DS venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G GUNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K RAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NV Lokamatham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S NARAYANASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N NAGARATHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K PERIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M DAMODARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G SUNDAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S Kavitha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G V MALLIKA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nalla sanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S P Kuppaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G KUPPASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K P GOVINDHASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S YAMUNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K Sadasivan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Nagammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M MURUGAPPAMODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CN palani power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D K Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K RAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V G JAYALAXMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V DEVANAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D K SAMPATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T jayavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N MUNIAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CK Muthammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M Subramanyam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E ANANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ADIMULAM MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M Sadasivammodaliar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D thangavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Narayanaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MK  Dandapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SUDHAKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K NARAYANA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D P MUNIAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Vadivelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A Murugesam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K MuthuveluPowerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R PRABHAVATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A SREENIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K NAGAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHADRAKAALI FIBRES PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M RAJESWARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S ULAGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUTHAIAH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N P Kuppuswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K GOVINDHASWAMYMODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Geetha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N GOPALAKRISHNA MODULI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Kuppaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkatkumar powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D V RAJAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Raman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SARASWATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Krishnaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V MURUGESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BARATH POWERLOMMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'N V shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Kuppaswamy powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M RAJESWARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T BOMMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D YANADHIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DK shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M SADASIVA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N harinath', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G MUNASWANY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G Rajeswari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Srinivasa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S N ULAGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G N GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N D Nagappa Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B N ARUN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M ELLAPPA MUDALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N kuppa swamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K Doraswamy Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M T Elumalai Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M N Ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Arunachalam Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'v nagappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V R LOKANADHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S UMAPTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C E Ayyappan Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Ranemma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K Chidambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Anandhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A karthavarayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G CHENDRA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V GOVINDHAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E D ESWARAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S govindarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS JAYAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P KARISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M OSURAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P R Rajamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M  Murugesa modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K YELLAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MV Ganapathy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMABHADRA INDUSTRIES PRIVATE LIMITED SPINNIG DIVISON UNIT 2', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '138']
[' Industry Name ', 'ME Viswanadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K UNNAMAI AMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SADASIVA MODALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Raghu Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E Gunasekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K SALAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S VENKATESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B SUBRAMANYAM powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K PONNAMBALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D DEVARAJ WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DL Suselamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Penchalamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Padmanaban', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Sekher', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SADASIVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V D Rani Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Manikyam modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K RAMANANDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K Padmavathi powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NM Usha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PE Annamalai modaliyar powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Annapoornamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M DHARMALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramabhadra industries private limited spinning division unit I', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '49']
[' Industry Name ', 'D G SUSEELA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J GANGADHARM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MC Murugavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MV krishna', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Desamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AC Venkateshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M RAJESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R DEVARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D L Suseelamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Someswararao', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A G Vadivel Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M Annadurai PowerLooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dasari Balachandar powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M J ANANDHAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M PADMANABHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Sarangapaani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D RAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y K ARUMUGA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S Vadivelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N C Ponnuswamy  Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E A KESAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIGNESWARA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'v k vinayagam weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p s murali weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E R KARTHIKEYAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVR SPINNING MILLS  PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '49']
[' Industry Name ', 'S N HARI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K SOMASUNDARAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S DESAPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T BALAKRISHNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's r asokan weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'c v viswanatham weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S M SANKHAR WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G SRINIVASULU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE KRISHNA THREADS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'E K Manigandan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CE Kumaresan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V Chinnappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KALLAM MURUGAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D Dhanasekaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Govindhammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A BALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A Thanikachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V R NAGARATHNAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A SRINIVASAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'r r velayudham weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K SALAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M H MURUGESA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S MUNIRATHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T G AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NS Mallika powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R S VENKATESAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Arumugam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D D GOPINATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E A SIVAGANNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S MUNIAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K ESWARAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Nadiya Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N C MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B KANIYAPPAN POWEELOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VG somasundaram weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y A SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S Rani weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS manjula', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M SOBHANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r k neelamegam weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G AMMANNIAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R A Gangadaram Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'v c sakunthalamma weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Ramesh Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G CHIDAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R D POONGADI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S Santhi Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G KUPPUSWAMY WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B E Jyothi Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A C MUTHAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G Ravi Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'B K NETHAJI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C E Sivalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K DESAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N C Muthuvelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T P CHAKRAPANI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K VADIVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P JAYARAMAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N M SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Pattammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Senthilkumar Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'J S GANGADHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B S LOKESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c m asaithanbi weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AK Radha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SA Vetri Selvi power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A s Umapathi powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C G MUNASWAMY WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M J PONNUSWAMY WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DS KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T G AMARAVATHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M UMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D D VIJAY KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C SIVACHELIAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T M KUTTIAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Aswini', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SADASHIVA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PK Veeraswy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R M URAPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'a s rani weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SREENIVASULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Savithri', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B H Chandran Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R H SIVAKUMAR WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V Sanjeevamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S JYOTHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V MURUGAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R RAVIYAMMA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R RAMESH WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 't p ramalingam weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Deepa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V MANI POWEELOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r a elumalai weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c k sankar weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS perumal weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E S SEETHA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S DEVARJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MN Doarikannu powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R R PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Snselvem', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r s elumalai weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V LAKSHUMANAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MM Suresh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 't g sabarinathan weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E P LAKSHMI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v k leelavathi weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v s visala weaving', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D K MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'patnam srinivasulu Hand warping', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A R NAGABHUSHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RA Lalitha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddi Vinayaka Soudarsini Traders', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K MUTHUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA THREAD WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A S RAVI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S C HARIBAKTHAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M J ELUMALAI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v k kasinathan weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K D SUJATHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K V MANI POWEELOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S S Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Dharman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C K JAYACHANDRA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E KANAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C N MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D L Raman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S Rajeswari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N J SAMPATH WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'a e shekar weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C O MAHESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', '840572232083', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N SADASIVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K GANESHAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS Sakthi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'swarna tailoring', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RR Kanniappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NK Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B E Bhagyam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S Dhanabagyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ANNAPURNAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N LAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K SIVAKUMAR WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PA Selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S DEVARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V Mohanamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Shanmugam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'N R SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N J VISALAKSHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Kanniappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c  murugappa anbalagan weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K ARMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V sankar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R R NEELA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', '723754225032', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T R Mani powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K S KESAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K Chinthamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K VINAYAGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E Rani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K SANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R KADHIRVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G S umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S APPASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M SRINIVASULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sendhilvel Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'G SREEDHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N karpagam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S THIRUNAVAKKARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V THANGAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S LAKSHMANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'koneti babu power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P VIJAYA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D MANOGARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K kaniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S E SELVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E SOMA SUNDARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A J THIRUNAVUKARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara fabrics', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHOWDAM PARTHASARADHI POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M Saravanan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dasari Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V KUTTIAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G ULAGANADHAN weaving and works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C S GANAPATHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B N Ekambaram Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M K SRINIVASAN powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A NEELA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K PONNUSWAMY WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T P Prabhakar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R L PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A VENKATESAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hand looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K A Murugan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R L ARUNACHALAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N POONGODI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M PARIYASWAMYL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S Kumar power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ks sekhar powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N lokanadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A DHANAKOTI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G OSURAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G RAJA WEAVING  WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T J RAVI CHANDRAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S TIRUPURASUNDARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A P WOORAPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C C NATARAJAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k Arunachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V DILLI CHANDRAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J SHANMUGAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Thilakam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P DRAKSHYANI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v Keshavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V G Srinivasan Weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S MURALI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N K JYOTHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K MENAKA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G CHINNAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIRI Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S N Velu powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G SARASA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E P NAGAMMA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S ponnuswamy weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N RAJAMMA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V AYYAPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K VENKATARAMANAIAH CLOTH MANUFACTURING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'N V PERUMAL WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S LOKANADHAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T Rukmini', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S LAKSHMI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N V AYYAPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S YUVARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R Ellamma weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'powerloom weaver', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI SURYA TEXTILES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Gangadharam power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M RAGHAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Kandha swamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A Sreenivasulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Muniyappan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C N PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V KANNIAMMAL WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G vinayakam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Tamilarasu powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V M Damodaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S J THIRUNAKARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Subramanyam power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Thyagarajan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S KUPPUSWAMY WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G VARADHAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C N PARVATHAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Munaswami', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K MANIGANDAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k Velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M GURUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V S Raja', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SA Govindhaswamy handloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'abbu o thiruvengadam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G HARI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANNAMALAI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G M osur', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E R SANTHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THANIKACHALAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S Sundharam power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N KRISHNAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K THANGAVELU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THYAGU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A  S SUNDHAR WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREENU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DEVI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M DESAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K MURUGAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E P PARVATHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMESH WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASANTHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E V PANDU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAVIKUMAR WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHUPATHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G JEY SAI BALAJI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E R PRABHU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R KANTHAMMA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S PARTHASARADHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S SELVAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P J ARUMUGAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T J DEVA KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P GANESAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S THULASI RAMAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V CHIDAMBARAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S PANDURANGAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Arumugam weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R MEENA DEVI weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P R VIJAYA LAKSHMI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K SANKARAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K LAKSHMANAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shivakumar weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S MURALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G PARTHIBAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P VIVEKANANDAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T N ANNAMALAI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E Sivalingam power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T A RAMESH WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B K SATHISH WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S SANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sambasivan weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B S Boopathi Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Thulasiraman Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'subramaniyam weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E K Janakiraman weaing', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B C Vasugi Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Lakshmi Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Malika weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chiranjeevi weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Elumalai weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E V siva weaing', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vijaya Lakshmi textiles', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abbu GOVINDA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P R SHANKARAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P D Karthikeyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Divya Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Prasad Weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Vardappa modali power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K NEELAKANTAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Elumalaai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P SELVA KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LALITHA POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N E Venkatesam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V ARUN KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K RADHA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R S Krishnappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N SADASIVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S PERUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E VADIVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Kanniamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B E NARAYANA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P Hemavathi Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MEENAKSHI POWERLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D E GANESH MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M KODANDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M Lokanadam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K saravana', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S THYAGARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S SUNITHA REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Veeraiah powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mukesh diesels', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARATH TEXTILES', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P D KUMUDHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAVANYA ENTERPRAISES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M RAMASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V ELLAPAN MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C K Ellappan Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A Radha Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G BABA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N NARAYANASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D GANAPATHI MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Krishnappa power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vavuthu kailasam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Dandapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S sadasiva modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Murugesa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Manikyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS Govindaraja', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G LOKANADAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G SELVARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Velan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Balaji Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M KARUNAKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K VADIVELU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's m tiruvengadam weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S SANJEEVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K Govindappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r g urappan weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 't s ganesh weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B V Urappan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'YERRA SRI DEVI ENTERPRISE', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M DEVA SANTHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MA Ganapathi wrapping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R J Gugan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VD Nagappa Modal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N R Nandhakumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Anandan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K JAYAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N Prakash Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C S Damodaram weaving', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S MUTHUVELU WEAING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K GANESAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C S KAILASAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Venkatesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G D Jayachandran Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KR Palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N Murali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'a s ammulu weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S PERUMAL WEAVING  WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E A CHANDRAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DS Chandrasekhar Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V kailsam WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A RAMASWAMY MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K MOHANAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Sankar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N N Vasudevan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sambandham Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S N Gopi Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M C SADASHIVA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C O GANESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Lakshmamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eswaraiah Handlooms', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M B  DESAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R GANAPATHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS Krishnappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M CHANDRASEKHAR POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'M P Suresh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'a v sankar weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K VELAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K Ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G Rajendra Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K Muragesa Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Manimegala', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p k mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R D NAMACHIVAYAM WEAVING WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S LAXMAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'B R VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S SRIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M T ANNAMALAI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G S Damodharam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PA Veeraswamy Mudali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S MUTHAPPAN MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C K KANNEPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A BALARAMAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M J AYYAPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V HARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C K RAMACHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T G KANNAMMAL WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'a g lakshmanan weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N P Rajamanikam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'E S ASHOKAN WEAVING WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V Govindarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G thinavakarasu powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Madhavan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S JYOTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D T RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T VISWANADHAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MN SHEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r k jyothi weaving work', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D Venkatesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K EKAMBARAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G kanniyyapan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagaraju Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PM KUPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N LAXMAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K BHASKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G MADHAVAIAH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D S SANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T R MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sampath Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A MEENASHIAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'r d Lokanadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'solingar sekhar power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N Kuttiyappav powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R KANNEPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'P M kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S VIJAYA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S DEVAYANI POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K SARAVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARUL KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G Srinivasulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Ratnammodali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M USHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HAND LOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A K AYYAPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D V SYAMALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S D ESWARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S Pandiyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E E SANKARAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A C JAGADEESAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C H PUSPA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P KUPPASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A THANGAVELU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Yugendher power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T J VINAYAGAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E G MANOHARAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G E valliyamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K Arumugam power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mselvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Annamali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Sreenivasulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Kamalakannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B S Gopi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KAMALA M K WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A Ayyappan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M natesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'weaving work', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P Vijaya', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S LAKSHMI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI TEXTILES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A G RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G DELHI WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'a kumarappan power loom  unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E R ARUMUGAM WEAVING WORKS 1', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E JAMUNA WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E R LINGAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S GANESH WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P D SUGAVENI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMALINGAM weaving works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V SANGEETHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M JANAKIRAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Raja kumar weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Raja Malleswari Textiles', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gowri weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Textiles', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vadivelan weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAS TEXTILES', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narayan swamy weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ISHANVI TEXTILES', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkataswamy weaing works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOHAN SPINTEX INDIA LIMITED   DIVERSIFICATION EXPANSION', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '91']
[' Industry Name ', 'Loganadhan weaving machines', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N prameela power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Korra Vasantha Rani', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanushkoti Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Divvi industries', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'slice touch garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAPTHAGIRI FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'srinivasa chenchu lakshmi sarees', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R D KUMAR FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'M G JAGANATHAM TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI VEERABHADRESWARA COTTON INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Cotton spinning and weaving', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENkATESWARA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'MANUFACTURING TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Siva power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANJUNATHA SPINNING MILLS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '72']
[' Industry Name ', 'Vasantha industries limited', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'B C RANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B SULOCHANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P D KANAGAVALLI CONE WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M VENDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANANTHA LAKSHMI SPINNING MILLS PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '113']
[' Industry Name ', 'Sri venkata Lakshmi narasimha spinning mills', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '400']
[' Industry Name ', 'M R PREMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N Oyyaram powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R NAGALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V D VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C M S EKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm s purushotham winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A KUMARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Venda', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D GOVINDARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S SARASA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R BALAKRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E G RAMACHANDARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R A NEELA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R Padmavathi powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G S Devarajulu powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S V Ravi Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N M Sivalingam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAMBASIVA TMC UNIT', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '17']
[' Industry Name ', 'Annamalai Spinning', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K P UNNAMALAI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K N RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meena Spinning', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagappa Spinning', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G DESAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A  G Sendil Velu powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aalakara kadiresan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D K Sivalingam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A Arumugam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A Mangamma powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Bharathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARSHA COTTON TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Srinivasan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R LOKANADHAM POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Ellappa modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k s lalitha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P Venda winding mechine', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P Himaya Devi powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Prabhavathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGADARAM POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N Arunachalam Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G S Arjun power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K KARPAGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K  R Rajeswari spinning unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KS IYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A A Suseela', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DN Subramanyam power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A  V SALAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G NARAYANA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Kailasa Modali power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M THANIGAL MALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MR OORAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G Vijay Rangam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'thalava Seetaraman powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A D Bhaskar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A L Bhanu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V Ambika Spinning Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M PunniyaKoti powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dasari Elumuali selvam powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p s nagamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E N JYOTHI MUDILIAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K D JAYANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N K lakshmi spinning machine', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandramukhi cotton syndicate', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P k Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D D Varadappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHRI GOVINDARAJA MILLS PVT LTD', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '360']
[' Industry Name ', 'DL Ganapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D R chitra', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G Sandhya powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DS  srinivasulu power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M SUDHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Suseela Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V G LAKSHMAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K Dhayalan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'guru fabrics', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'A R LOKANADHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Herbals', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SAMBANDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K T SANKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'A R DEVARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri satyannarayana cottage industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SIVAKUMAR SAREE DEGINEERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S SEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K REVATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YINDU Textiles private limited', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '170']
[' Industry Name ', 'sivaram yarn pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '55']
[' Industry Name ', 'A M MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'JK THREAD  BALL WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M KUMARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V VIJAYA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P J JAYALAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M UMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNAMURTHY SPINNING MILLS PVTLTD', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '101']
[' Industry Name ', 'Gajavelli spinning mills Pltd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '430']
[' Industry Name ', 'MOHAN SPINTEX INDIA LIMITED  UNIT-2', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '389']
[' Industry Name ', 'SIVA SWATI TEXTILE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '228']
[' Industry Name ', 'Sri Lakshmi godavari spinning mill', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '480']
[' Industry Name ', 'KT MUNIYAMMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THATAVARTHI APPARELS LTD', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '95']
[' Industry Name ', 'SREE VEERABRAHMNEDRA SWAMY SPINNING MILLS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'VIJAY SPINNING MILLS LTD', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '29']
[' Industry Name ', 'SHRI SAISUNDAR SPINNING MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'KALLAM SPINNING MILLS LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '123']
[' Industry Name ', 'MIRZAB SYNTHETICS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA SPINTEX PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '130']
[' Industry Name ', 'new Bombay tapes', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MINNAL KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S D SIVAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V MURALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M CHENGALVARAYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARTHIKEYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V L MADIVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kg srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K Soman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K Jagannadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S T PARTHIBAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AV VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Padma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S C PAYANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MINNAL SANKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E P VISWANATHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S VIJAYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata umasankar spintex private ltd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '88']
[' Industry Name ', 'NANDAALIYAMMAN TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M PERUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'O G GANESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N PARTIPHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P POONGOTHAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R VINAYAGAMOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A THIRUNAVAKARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V LOGANATHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J DHARMALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R A MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S N GNANASEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G V KANDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G KUMARESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P DHAMODHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S NITHYANANDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K D THANGAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S VINAYAKAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K DAMODARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M PERUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B H SAVITHRI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G BHAKTHAVACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's k venkatesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SK VENKATESULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P KUMARAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A  Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KK YESUNADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M SATHEESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Raja', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P MALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T P KADIRVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri tirumala milk products pvt LLtd', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MU THIRUNAVU KARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P DORAI KANNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G chozan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C G indhu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M SUMATHY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SAKTHIVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OV DAYALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M KUPPASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S RAMESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S OSUR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K BOOPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T PERIYASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M NEELAKANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S AVANAKSHI MUDALI POWERLOOMS ki', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KM BHASKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S VADUVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P SAMPOORNAMMA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V SANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK LATHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A DHARMAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R LOVAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM LOKANADHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K LAKSHMI WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GANESH SPINNING MILLS PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'N PANNEER SELVAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A D SAKUNTHALA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AG RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A A KANNIYAPPAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V E SANTHAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K NIRMALA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S N RANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T N KANNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T V SAKTHIVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VK ESWAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P Subramani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REDDY KUPPUSWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K PERUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M J SELVI TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K RUKKU TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B S GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K B PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S KANNIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K BALARAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A GOVINDHASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B S MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Saravanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K BALAJI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S D Meganadan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E THAMARAISELVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K N INDHRANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S DHAIVA SIKHA MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N KANNIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E VIJAY WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B A SANKARAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S MEGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S NEELA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J PONNAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K BHASKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'O P PANZACHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P RANGANADHAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B P RAJAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Ellappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THYAGARAJAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'M R GANESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P L Ganapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B P BHUPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R M KANNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R A Nirmala winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MJ CHANDRAN HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M CHAMGALARAYULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SC AMBALAGAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M UNNAMLAI HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S GNANASEKHAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N T PARASURAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T K MUTHAMMA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V SANTHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Sumathi Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Devi Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B G Kannemma  Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TM KRISHNAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S G Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ME SUSEELA COTTON YARNS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N T Sumathi Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TM PARANJYOTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N Savithri  winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P MURALIKRISHNAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N DEVAKI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S AMULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BN MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a kaniyamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E Venu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N T MUTHAYYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C S Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V DHINAKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B R V BALAJI POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MK SREENIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P DHANAPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'b a dhinakaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S D Sarojamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BV SOMASUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V PEETAMBHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B A ARUMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a p voorappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Damodaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G J GANAPATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Rajendran powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M ANBAYAGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J S Govindhaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V E vendan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J K MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A J DHANAJAYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V NATARAJAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E A MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v vijaya', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G SEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Gowri winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M VOORAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S JAYA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOWTHAMI SPINTEX INDIA LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '142']
[' Industry Name ', 'JS RAMACHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'O P SOMASUNDRAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P C Lakshmi winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R ANNAPURANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A DESAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N S KARTHIKEYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Desappan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k nagappa mudulai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K N Poongodi winding machine', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N T SARAVANAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AYYAPPAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm v poongodi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E KARTHIKEYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PM MURALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N K MANIGANDAN POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S P PANDIYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pm balan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Parvathi Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T R PRAKASH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K Raman Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'E JAGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Sujatha Winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J S BHARATHI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M SEKHAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKAT MUNI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K Natarajan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'b e bhaskar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S V KUMARAN power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A Jyothi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B G SREENIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SC APPADURAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm v ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RD CHANDRU HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N VELAYUTHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P PANDU POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Meena pinwinding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E JAISANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'dm venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V Devaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S S Manivannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E SANKARAN TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K DHANALAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G SATHIYARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S KALAIVANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B A VIJAYA KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A SUMDHARA MODALI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N KANNIAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's r kamalraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E V KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E G Lakshmi Winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A NETAJI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A KANNIYAPPAN powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PM VASANTHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V G BHOOPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k g krishnana', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S P ELUMALAI WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K D VINAYAGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V G CHAKRAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E SEKAR REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N SADASIVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K J GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M D GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S A Baktavatsalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMAJAYAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V K RAVI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KN SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S T MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S SARASWATHI powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SD DHARMALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C N SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K VAJARAVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G A RAVI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B V AYYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M SENDHIL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B DHARMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C R NEELAKANTAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P SURESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K GOPAL REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A MURUGESH POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K Ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V V Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M T Santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M PRAVEEN power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SELVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AA GOVINDHASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C D VIMALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B RUKMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R GANGADHARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS Pathimadevi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A Govindarajulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C R Yuvarani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P Somu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R T Mani winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N S JEWELLERY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A MUNIRATHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E S Udaya Suryan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sorakapeta moorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T A SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V DHAMODHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E Selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B A MEGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C K SREENIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M ULAGANADHAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T R ANNADHORAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R KANNIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E V LOKANADHAN powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SIVALINGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S M Murugan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B P DHANALAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TM DRAKSHAYANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a p renuka', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MV NEELAKANTAM HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E A UMAPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G Nagaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B E KANNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K MAGESWARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MA ESWARAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'G N SARAVANAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M KARUNANIDHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K SARATHI powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S VINAYAGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E LAKSHMI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A MOHAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N P Prameela Winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S PANDIYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E M SULOCHANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MK KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K Kamal Kannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ME PONNUSWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S SIVAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K E PREMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VG SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a g devan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R GOPI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E PANDURANGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K KUMARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B V GOVINDHASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N S SUBRAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K J RAVICHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a m sivaraman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J N GANESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M GOVINDA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S RUDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'b k gunasekaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S P GANESHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K SHEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J GOVINDHASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T L RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A PANDURANGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANNIYAPPAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N KALATHESWARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A NAGARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A V MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A J PANDU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K AMIRTHALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G SANKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G GANESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V MADHAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K R THIRUVAZHIAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V D EKAMBARAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A A SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T S MURUGESAN POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K A SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E V LAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mohan thambucht', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k l jeeva', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M sreenivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G perumal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P N Venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T S Govindhaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V DEIVASIGAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A R KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'J M JEEVA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S M KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D JAGANADAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A K BHUPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G HARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A C Anbu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B ANBALAGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A K RAVI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N G Sekar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S DORASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E Visalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Vinayagam power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p l kumaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V D MURTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R  ANBAZHAGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p v palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M C BAGYRAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'V A SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V P LAKSHMANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P P ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k n neela', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K PARTHIBAN power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K R MADHAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Kumareshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kn gopalakrishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S J CHANDRA SEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V D IYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k narayanaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V K DHEENADAYALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D SADASIVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D ELUMALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'J S KANNADHASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A J KODANDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P RUDHRAMOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P D ANANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S KRISHNA MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'a r udhayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS PANDUDANGAN TEXTILE', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A G SREENIVASAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A Eelumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V DAYALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S G RAMESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Sivanandham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'a santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'o e velayudham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S JYOTHIRAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'K G DORAIRAJ POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T K NARASIMHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G R Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'paudi muddala bala mandadi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NALLAM NAGALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S J MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p l velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jaganadham powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V DORAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G G PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P VELAYUDHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ambikapathi Tex', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N M ARUNACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G GOVINDARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C S karthikeyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VL GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k v velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'O ASHOK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'UDHAYAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GG MADHUSUDHANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N M PURUSHOTHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E Murali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'O G YUVARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K SELVAM POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Gangareddy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NARESH TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KALYANSUNDARAM POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A Kesavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K R Palani powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M JAYASANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S SREENIVASAN TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PA SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G R Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B N SEKHAR POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V T Vijayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T G Jayavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K J JAYAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Gowri', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V Jyothi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G P DELLI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S ARUMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sravani welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T MURUGESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C A VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V THANGARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C V ANNAMALAI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T K Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S JAGANATHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G Thinavakarasu powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R SHEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G BAKTHAVACHALAM TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J K NETHAJI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M S ELUMALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V sampath', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G SHANMUGAM TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V Meenakshi Sundaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G KUMARASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm c neela', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G BHUPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'v g nagaraju', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k p arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BS GOVINDHASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V D ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TP KARPAGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V D Murugaish', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S SANKARAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G CHANDRAN POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S N RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V T Kuppuswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Saravana', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B S MANI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's s nagarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K KAMARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T T JOTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K JAYACHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k Srinivasan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J V SUNDRAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J K THIRUNAVAKARUSU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VJ Parthiban powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sankaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G OSUR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SD SANKARAMURTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E S KALAIMANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E A CHANDRASEKHAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K MURUGESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M kanda Swamy POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S SIVANANDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'As valliyamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KM SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B Ellappa Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V H Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V VIMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kumaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J M Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'A G PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHINAKARAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S SADASIVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M JAYA SANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T S Annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nyanam Ganesan Sampath POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K E Bhupathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SM Egamoorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K A Eaganadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S D CHANDRA SEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A THIRUGNANASAMBANDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T L Ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N L UMAPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P P Kalathi Nadan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'E S NAGARAJAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T J VINAYAGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T V KESHAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N VASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G A GOVINDA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K KUMARAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VC SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VK KALATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G A ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S E KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G A KRISHNAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EA DEVARAJAN power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KG ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KR BHASKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A R Kanniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T KANNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P ULAGANATHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CN BHASKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A NAGARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R B EKAMBARAM Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T D ARJUN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N NEELA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T G MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T V UGANDHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T PERUMAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PVS POOGUDI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A ARUN KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CN SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N JEEVARATHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E S SEKAR Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PG MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J V PANDIAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MT VIJAYA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AP LAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VD SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E D VIJAYA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURESH CHEMICAL INDUSTRIES UNIT2', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A CHIDAMBARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KG RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S GANESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V V PALANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V R VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T T SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S G ARJUNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M MEENA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V RAJA KAMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J N SUNDARA MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V R DHARMALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RS DHANDAYUDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SB VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J K ELLAPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J M VENKATESAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K J NAGARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J P Subramaniyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N M RAMACHANDRA MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V V MAHESWARY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E V MANIKKAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A BHAVANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N K RAMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'p m devi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VS RAVI CHANDRAAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V NARESH KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A JYOTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K CHINNADORAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A POONGAVANAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S GANGADHARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K J SHANMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P U SANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T V BALA SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A SANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TV UMAPATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S DESAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A GIVINDARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G K KANNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S VINAYAKA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ND AMARAVATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KK KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SD NAGAVALLI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A JAYAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S M ARUNACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G MURALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'valij Govinda Swamy Ramachandran Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARULU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G BOOPATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E SAMBANDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K G RAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V B ANNIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', '450303770208', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri siddivinayaka welding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BASI KANDASWAMY EKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SATHYA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DP VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M UMAPATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'malliga powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M GOPINATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D DEVARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Dhaksgina murthi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P CHABDRAPPA MUDALI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G GOWRESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A lavanya', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M JANAKI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K N ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K G MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V GURUNANDHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S PARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M KANNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BE GANAPATHI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'EV KUMARAVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P HARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V JEEVA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M M RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T N SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SK GAJARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K C VIJAY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M B PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S SUKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A A HARIKRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M DESAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M B Arivazagan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A K ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Y DHANDAPANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S C Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E V SANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K G DORAIVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G GOPI POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M GOVINDHASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M R JAYA VEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A P THIRUGNANAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A P GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MK SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K MADHU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p k Devarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Thavamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M G BAKTHAVACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M S DILLIBABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AS JEEVARATHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KK PERIYASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P ANNAMALIAH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'a valliyamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G E DINAKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'koneri narasimhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M R Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JK LOGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GK JAGADEESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tirukalathi elumalai venkatesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VG umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c s chithra', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'T M MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VJ ARMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K SANJEEVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'OG RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S S MADHIVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K DESAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VG DHAYALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K JAYARAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M V vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N G CHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M NEELAKANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS LATHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'K P Jaganadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K P SURYANARAYANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J V BALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K K MANIKYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VG GEETHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHAGYALAKSHMI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MUNASWAMY POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S JYOTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AM PRABHAKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KC RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KC BHUPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KC RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KG GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A M HARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VS RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BPL HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S DHANAPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'YAMUNA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MG MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NEELAKANTAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Dhanapal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 's sargunam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G R GUNASEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KR KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P Vinodh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PG VEERAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G K ULAGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G S VIJAY KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATAKRISHNAIAH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P VITCHU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T T BHAVANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G RAVINDRA BABU POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHANAPAL GIRIJA KONERI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J N MOHANA SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P KANNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S GANAPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JK KANDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G DHEVARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A NAGAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K R BALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R KESAVULU WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHANMUGAM WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G S AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MG CHOKKA LINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V M ARUMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T J GNANASEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NK BALACHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K SEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S VENKATESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'g munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P PEETHAMBARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KD KALPANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GG RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T G DHAMODHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's kanniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'J GNANASEKHARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K D GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'M G MURAGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SARAVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V K SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ALLI KUNDHANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PK Payani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A PERIASAMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMAKRISHNA MILLS COIMBATORE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '101']
[' Industry Name ', 'PK KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GAJENDRAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'layola exports', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MA SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NE PONNUSAWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S Naidu and Co', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Lakshmi Narayana Reddy power loom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SD GNANA SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'IDUPULAPADU COTTON MILLS PVT LTD - Unit - I', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '420']
[' Industry Name ', 'BALARAMA KRISHNA SPINNING MILLS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '96']
[' Industry Name ', 'SIVASUBRAMANYAM TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'A T H TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P G NEELAMEGAM DYING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'PONNUSWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PUSHPA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRIVARI FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SAKTHIVEL TEXTILES1', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI OSURAMMAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MSN TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VINAYAKA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M THYAGARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYEING AND WASHING OF READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA JAGADEESWARI RAJAKA SANGHAM', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYEING AND WASHING OF READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '62']
[' Industry Name ', 'Jaya sri Handlooms', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sv prakash', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'P S Sekhar dying unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI CHAKRA OFFSET PRINTERS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B S LAXMIAMMAL DYING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'PGB Visshnadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SRG FASHIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '42']
[' Industry Name ', 'AGM Textiles', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '27']
[' Industry Name ', 'Sri varasidhi vinayaka ladies fashions', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AKSHAYA GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vijaya Lakshmi Tailoring and general stores', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWATHI GARMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SHIVAMANI GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Pals Plush India Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '63']
[' Industry Name ', 'Gopal Ready Made Garments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARJ FASHIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Renuka Garments and Textiles', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri vinayaka silk sarees', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'cj Venkata kondaiah powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Peddakotla Leelavathi Weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA SWAMY NAIK MEGAVATH', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G Bhaskar Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Palla Gurulakshmi handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Palla Lakshminarasamma Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chowdam subbarayudu handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vankam chinna Venkata subbanna handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karumuru Venkata lakshmi Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kambam Venkata subbamma Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganjikunta Sanjeevarayudu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kuntumalla narayanswami handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BELLALA PADMAVATHI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hema handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBADRA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VANGASAM SURENDRA REDDY              V CHINNAPPA REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VELIGANDLA LAKSHMI NARAYANA', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chanakya Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chinna rangadu handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bellala Venkata Kumar Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Naga Raja G Nagulayya', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VENKATESH HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAMULETI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ananda power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gunasekhar Reddy power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADANAPALLI SUBBARAYUDU', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lalu Basha Powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dasari Govindu Rajulu handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri varshini handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THE MORI HAND LOOM WEAVERS COOPERATIVE SOCIETY', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri jaganadha Handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sana Lakshmi Devi Handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'makula narasayya handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vankam thirupathaiah Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vankam sreeramulu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vaddi Subbalakshmi Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Guddeti Narasimhudu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chowdam Sreenivasulu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rama subbamma Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Ramana achary handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Deva Venkata Ramana Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vankam Venkata Ramana Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kalle  Anathalakshmi handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rangaiah Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Neelam Ramaswamy Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kuntumalla Raghu ramaiah handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ulsala Narayana Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi venkateswara tape works', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramachandra handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasa sadha sivaiah', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA TEXTILES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thirumalesu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M kannadasan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M ELUMALAI HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANA LAKSHUMAIAH HANDLOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA LACE AND BLEACHING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATAKRISHNAIAH HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAGAN MOHAN HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEETHA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KONDAIAH HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYAM HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DINESH KUMAR HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DONTHI VENKATESWARLU HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DANALAKSHMI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI RANGA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BAFIGINJELA LAKSHMI DEVI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHINNAMADDILETI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDRA SEKHAR HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH KUMAR HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA LAKSHUMMA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASULU HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEETHA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PALLA VENKATA LAKSHUMMA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'yathiswar Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESHWARA HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUBBARAYUDU HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARASAMMA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNAIAH HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'IMAM HUSSAIN HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RANGANATHAM HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pulimaddi pedda Masthan weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Arjun', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P KULLAYAPPA weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANA HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BHUME ADINARAYANA', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkatachalapathi handloom units', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A M ANNADORAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAMSHADHARA WEAVERS PRODUCER COMPANY LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '106']
[' Industry Name ', 'SOMA CLOTH DESIGNERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Babu Phakruddin weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'YAMINI FASHION GARMENTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'JAI GURUDEV POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'derangula rajanna weavering unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'siva handlooms', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijaya lakshmi handlooms textiles', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshminarayana Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'aruna jyothi handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naga subha rayadu Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kambayya weavering', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LINGAPPA SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SREE MADHURAVANI SILK EMPORIUM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRILAKSHMIVENKATESWARABLEECHINGWORKS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MEKALA MALLIKARJUNA', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K SIDDAIAH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SP Kesavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'c Balappa Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THILAGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANUFACTURING TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Cotton Spinning & Weaving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'varasulu vinayaka textiles', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J A SEKHAR POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Seshasai Spinning Mills P Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '76']
[' Industry Name ', 'SRI SAIBALAJI SPINTEX INDIA PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '105']
[' Industry Name ', 'Sundari spinning', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M THANGAVEL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PK komala', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E DHANABHAGYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AR SELVAM POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Dilli Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S KAVITHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S NAGARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M C MANIMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K K VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P R Navamani Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KS Ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A A MANIRATHANAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PM SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VALAGULAM GANAPATHI RATHNAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tirumala cotton  agro products pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '185']
[' Industry Name ', 'Sri lalitha parameswari spinning mills pltd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '500']
[' Industry Name ', 'Mohan spintex', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '162']
[' Industry Name ', 'Sri Nukala Rama Koteswara Rao Textiles Pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '51']
[' Industry Name ', 'Praveen spinners India private limited', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '30']
[' Industry Name ', 'K GOVINDHAN SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NSL TEXTILES LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON SPINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'N R CHIDAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J JALANDA RAIAH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIVEN SPINCOT PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '131']
[' Industry Name ', 'P N JAYAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S SIVALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N A BALASUNDARAM POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S Kanniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MP GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K Palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K LOGANATHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G C PRAKASAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V LOGANATHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S AYYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S RAMALINGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R RAJENDRAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S  somasundram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S SENDAMARAI POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V G UMAPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohanamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V G RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VV GURUMURTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B V MASILAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A V GOVINDARAJAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M GANESHAN powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V Ayyapan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MALLIGA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S VASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 't g rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S PRAKASH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A C Vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AV KRISHNA MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M T JAYAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B VADIVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M CHANDRA SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E G JANAKI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T J MUTHU SWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A KARTHIKEYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A HARIDASS POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V CHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M C SURESHKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G S SAMBAMDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'textile', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MD VENKATESHN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S Gunasekaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B S SANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K KALATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N RAMASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TK VASANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J V BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S PALANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K E SANKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'J O BALAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'j Mallikharjunaa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E V KANNAYARAM MUDALIAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S V MAGESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'S M RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G PERIYA SWAMY REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARJUNA R PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M G MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MK SIVAPRAKASHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'P E ILAYARAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M P Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'J K RAMESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R POONGODI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T P MUNIEPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M T MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SK SAMPATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k j Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ks sambasivam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BS EAKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A prabhakaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S KUMARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 's s palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K SIVAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K C KALAI MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NIRMALA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANCHANA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N ANJALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EV LAKSHMANNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHANU THREAD BALLS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RS SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'winnerprocess', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'GK SIVAPRAKASH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KARPURAM NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MD LAVANYA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANDASWAMY NALLAM MUNASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G K JAYARAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SS GANGADHARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T E MANIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S E Viswanadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PADMAVATHI FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', '4S SPINTEX INDIA PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '50']
[' Industry Name ', 'SRI VAISHNAVI SPINTEX INDIA PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'SELVAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'USHASPINCOATPVTLTD', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '73']
[' Industry Name ', 'MLAS POWER LAUNDRY', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYEING AND WASHING OF READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KSR DYING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'JOTHIKA CREATIONS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'D J G FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '15']
[' Industry Name ', 'K A VENKATESAN CLOTH MANUFACTURING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '29']
[' Industry Name ', 'Jaswitha handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'DYING AND FABRIC', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SUBHAS DRESSES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S  P APPAREL INDIA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Garment Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '187']
[' Industry Name ', 'asha handloom unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE MADHURAVANI SILK HANDLOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gummani Ramanaiah handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'karumuru Munemma handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chakri unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madaka krishnanjaneyulu handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMANA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chenna Venkateswarulu  Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi channakesava', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganjikunta Lakshmi Narayana Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karumuru nagendra handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'karumuru nagaraju handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Neelam  Pedda Ballaiah handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chowdam Narasimhulu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganjikunta Narasimhulu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganjikunta Obulesu Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Guru Prasadu  Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madhusudana Achari Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RANGA PRASAD HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SULOCHANA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJESWARI DEVI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNA HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANIKANTI RAMESH HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Prabhakaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Masthan weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALA HANDLOOMS JANDRAPET', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P S MANI HANDLOOM FAB', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sriramhandloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'dhana handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sriramulu Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Harshavardhan unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI POTHULAIAH SWAMY SILK HANDLOOM CARTAGE INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri sai industries', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lokesk Powerlooms and Handlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUNITHA HAND LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI KHADRI LAKSHMI PRASANNA HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SHAKIRA PATCH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'MANIMALA PNEUMATIC HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ESWAR SILK SAREES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RR HANDLOOMS AND TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE JANAKI HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'NVR PRINTS', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shekar Hand screen prints', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KALAMKARI HANDPAINTING SAREES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI FINE ARTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SJM KALANKARI CRAFTS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SUBHODAYA KALAMKARI PAINTING ARTISANS MUTUALLY AIDED CO OPERATIVE SOCIETY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI DURGABHAVANI HANDICRAFTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI SRINIVASA KALAMKARI SEVA SANGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'KALAMKARI RESEARCH AND TRAINING CENTER', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'VSRD WEAVES', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'SUMA BOTIQUE COMPUTER EMBROIDERY', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Sai surya tailoring', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Joy Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk Babu sheet Covers', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'parvathi ladies tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kranthi tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Chandra sewing machines', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SSV Readymade Garments', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MACHINE EMBROIDERY AND READYMADE GARMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'NAGA PARAMESWARA KNIT GARMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTUR OF MEN AND WOMEN UNDERWARE GARMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri SR mill', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTUR OF MEN AND WOMEN UNDERWARE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '46']
[' Industry Name ', 'SESHASAYEE KNITTINGS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTUR OF MEN AND WOMEN UNDERWARE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '80']
[' Industry Name ', 'S  S Garment Accessories India Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTUR OF MEN AND WOMEN UNDERWARE GARMENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '94']
[' Industry Name ', 'amdalli pillows', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI DURGA TEXTILES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI DURGA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI WELL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VASUNDHARA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHREE COMFORTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Madeena Cotton Factory', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Navajeevan textile', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacture of Surgical Cotton', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'seetharam trailering', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE DINAKAR FABRICS PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '45']
[' Industry Name ', 'SUNDARA MOORTHY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K Mani Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KIRAN AND CO', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'UMA THREAD BALL', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hetro Spinners Private Ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'UNICHARM INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing of Diapers and Sanitary Napkins', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '105']
[' Industry Name ', 'sri kalyani fishnets', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing Of Industrial Belts Using Nylon And Cotton Threads', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'MSB BELTINGS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing Of Industrial Belts Using Nylon And Cotton Threads', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GARMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing of Ready made Garments along with Washing and Dyeing process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'mouneswara garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing of Ready made Garments along with Washing and Dyeing process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'taj enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIVARI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI VYSHNAVI BAGS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VASUNDARA SHOPPING BAGS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'saimedha industries Pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gupta enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI CHAKRA BAGS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Shri geetha Latha enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'AERIZON INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SKML PAPER PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SS Industries', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Surya Textile and Proofing Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ecostart innovations', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MALLIKARJUNAYYA ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kvr bags', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Latha power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SHIRIDISAI FISHNETS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'DEVI POWER LOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AKSHITHA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYASAI FISHNETS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SANTHA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Durga Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Umapathi power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S L N POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Balakrishna Powerloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'bharat monofilament and textile Pvtltd', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Multi Filament Yarns', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Chenchu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'PAPER CONES FOR YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKATA KAMAKSHI MANIKANTA PACKAGES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Poly oven Sacks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sk Babla bags', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Polyster Fibre', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sree veeranjaneya traders', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Polyster Fibre', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi tailors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Polyster Fibre', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RANGANAYAKULU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Polyster Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LALITHA ENTERPRISE', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA RAO KONAPALA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA SAKTHI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VINDHYA SIVA RAJESWARI THREAD INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ms Sri lakshmi durga padmavathi Thread', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HEMA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Anatha lakshmi thread works', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Mouli Textiles Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '43']
[' Industry Name ', 'Pavan Cotton Products PvtLtd', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'VIJAYA BHASKAR POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THYGARAJU POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AYYPPAN WEAVING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGENDRA VARMA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH TEXTILES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NAGA SINDHU SPINNING AND GINNING MILLS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'LAXMI PRIYA TEXTILES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA SAI TEXTILES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '69']
[' Industry Name ', 'cj chandrasekhar powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P ANNADORAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A R RAMESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P VELAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K VENKATACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C A VELAYUDHAM MODILI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C A GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C S VENUGOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V LAKSHMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narashimha murthy handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K GOVINDAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K N POONGODI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K EUSU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J V KUMARI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E N SREENIVASAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VALAGARAM SIVA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A M GAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R DEVARANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V MANGAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C P DORAIRAJ POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K V VASU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T C RAJA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K V BALU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S RAJENDRAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Venkatachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N VELU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K D VENKATACHALAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RANITEX INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NALLASIVAM SUBRAMANYAM VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M M SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A N THULASIDAS POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N PONNUSWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K MOHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K B NEELAKANTAN WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G RAJA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K B MOORTHY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MP DORAIRAJ POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T P KAMARAJU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V Ambika powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Saravana power loomes', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M VEERARAGAVALU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K KESAVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K MURUGAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A GANESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G PONNAMBALAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K D GOPAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M ACHUDHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M munaswamy powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A RAMAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K LOKANADHAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E URAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P RAJA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T P GANESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R SREENIVASAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Jayaraman power loomed', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K JYOTHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A RAJA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Rama Chandriah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K DORASWAMY SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S E ARUMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S GEETHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T A SAMPATH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K D VENKATACHALAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G SARAVANAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S BALAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G PRIYA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P D SEKHAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P VELAYUDAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S DHINAKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K ULAGANADHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'O NAGUR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V D MURUGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M MOHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V DILLI BABU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S SARAVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T V MOGAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V D RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N E MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S LOKANADHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M GOPAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N NEELA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P U SANTHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N E RAJENDRAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V VIJAYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P DANDAPANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S ARUMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S HEMANADAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P D PONNAMBALAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K J SAMBANDAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M KUTTIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K GOPAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S P THANIKACHALAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A THYAGARAJ POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G Umapathi powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J G picchandi powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MEENAKSHI SUNDHARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G A Raghu Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G DEVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S NAGABUSHANAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M DELLIGANESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S KANNAPPA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S OM MUDHALI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NS Murugappan modhali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C A BABU SEKHAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P MANIKANTAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kachi Chidambaram powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Raja Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K U GOPI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G kumaran powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P BHODENDRAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Mohan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S GOPAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K PANDURANGAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A RAMAKOTI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K KARTHIKEYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P NAGARAJ POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Sivalingam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S UMAPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M N Nagappan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S KASINADHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E KUPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M GOWRI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S MURUGESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AP KESAVSM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MK Pandari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C P ARUMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K B AMUDHA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'c m venkatesan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S TULASIRAMAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C V SELVARAJ POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K KANDASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T Madhu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'L AMUDA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Arumugam powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K GOPAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V P THANIGACHALAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S VELAYUDAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P S Seetha power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K v balu powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k s ponnappan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Konerivenkatesh powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K GOVINDHA SWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PS DILLI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M AYYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A MUNIRATHNAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P LAKSHMANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K K MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'G MANI GANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A CHANDRASEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K SORAKAYULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K M RAMESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N S CHINNAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N PERUMAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S BHAVANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N S ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A MAHESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A S PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M P ARIVAYAGAN POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K S GANGADHARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S JAYASANKAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S KRISHNAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p s Nagoor powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G Palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S S GANESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T J CHOLAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G Mani POWER LOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K muthappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G NAAGARANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A J LATHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'R VELU POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S RAMESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K V Ekambaram powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J Perumal Reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T S ELANGOVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S PONNUSWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajeswari power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G LAKSHMI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T P KUMARESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A V Narasimman POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Udayasuryan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B G Ramesh Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J R SUNDARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S K Daivasikamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T V MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S RAMASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P KUPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thyagarajan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Thomas power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K E GIVINDA SWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T tyagaraj power', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A RAMASWAMY powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K G SARAVANAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI A MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V K PREMANATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K L THANGAVELU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'K V MURALI POWEELOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N SHANMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S SRINIVASAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G MANIKANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Kanyamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P K Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S GEETHA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S SIVALINGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S DILLI GANESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A NALLATHAMBI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M BHUPATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'T BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A U DHIVYA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M P ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S V MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C A SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S V AVANAKSHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K SANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T SUBRAMANYAM REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A M SHOBANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S R VENKATESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A YUGANDHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S G VEERAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V RAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N A GOVINDARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V S P CHIDAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B E VENATESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B D GOVINDASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mani power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A D JAGAN NADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A MURUGESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SENA PERISWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N A SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A N GOPINATH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K E palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T S LAXMI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A D LOKANADHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S VAITHIYA NATHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M V DESAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V G SRINIVASAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A D EKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V S RAJAGOPAL KRISHNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T NAGARAJU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P A GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A K SUDHARASANAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V C LALITHA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A MANJULA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ABBU NAGAPPA KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V K VENKATESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S PAYANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M RAJAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N S NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S S SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Srinivasan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V K ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A R SELVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G PANDIYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A ARMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P S ARUMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A C DASARADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C A ESWARA MUDALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PAPA MURAGADASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V P KARTHIK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P K Sekar Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A K BALASUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ABBU VELAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A BHUVANESWARY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A K MANGAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K E PRAKASH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M H KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A MURUGESHAM REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P S KESAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G S NAVANEETHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V V YASODHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V P RAJASEKHAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A SHANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P TANIKACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R V SARAVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S DHAKSHNA MOORTHY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARMUGAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M MURUGESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J K MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T M PAYANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N G GOVINDAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P A VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P K AYYAPAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VARASIDDI VINAYAKA ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N NAGARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'p d Anasuya powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T C BALAJI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R SELVI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S MUNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KN NAMASIVAYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Thyagarajan powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MEGANADHAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GANESAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NARASIMHAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A E Ganapathi Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'K A MOHAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'S Gurunadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S S Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M H Vadivelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A N SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ayyapan powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G Muthaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYKUMAR POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M S Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Muragappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MEGANADHAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUCH IMACPC SOCIETY LTD', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENNILA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Kameswari Devi Cottage Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HARI PRADEEP TEXTILE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S BHASKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'P A KUPPUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V P NAGARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'P S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BALAMURUGAN TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M PRABHU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'V G RAGHUPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Jaipur Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI BALAJI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMINARASIMHA SWAMY POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VINAYAKA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MEENAKSHI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri muruga powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GANAPATHI FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWRA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI OM NAMASIVAYA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DHINENDRA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P KUPPAN POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ms   S R MANJULA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'OBULESWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'narsireddy power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAKALI VENKATANARAYANA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chintha Chalapathi Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'ASHA SILK POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVENDRA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY POWERLOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGAJYOTHI POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAMPA MALLESWARASWAMY  POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARASIMHA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PARAMESH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIDYA POWER LOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hanuman Power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VANDHANA POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYAMMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMINARAYANA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SARASWATHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DIVYASREE POWERLOMMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YESWANTH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAGAMANI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARIKA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAIRESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ishwarya powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHESH POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGESWARI POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gowtham Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATESWARA POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANJUNATHA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Uttappa Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D L POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'V RAMACHANNDRA  V VENKATARAMANA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri AshwarthaNarayana Swamy Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateshwara Swamy Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KK SONS POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJULA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ashok hand loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Sujatha Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIDDAMMA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Goutham babu powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'N Ramanji Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jayamma Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGA CHANDANA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Komala Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NARESH POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MALLESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GANESH POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pothulappa swamy power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESHWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KALA SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Govindappa Hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sankara powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ramanjinamma Power Loom Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI NARASIMHA SWAMY POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K ANBALAGAN POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kondaiah powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pothulappa swamy power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkat power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARSHITA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVEEN POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Vyshnavi power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'varalakshmi power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Beeralingeswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PALLA VARADAIAH POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Beeralingeswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BOLISETTY VENKATA SUBBAIAH POWER LOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Power loom weaver', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'palla Munaiah Handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ramanuja Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sree Lakshmi Venkateshwara power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Jaya lakshmi powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHOWDESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMARAVATHI POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'POORNIMA CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'power loom weaver', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BEERE LINGESWARA POWERLOOM INDISTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SUNITHA POERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JABEENA BANU POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRINIVASA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANJUNATHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'TUMMALA BHASKAR REDDY POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SOWJANYA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MADDENA VARALAKSHMI POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LEELAVATHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sree Sai PowerLooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PADMAVATHI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'TEJA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VARASIDDI VINAYAKA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RN KEERTHIKA POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE SHESHADRI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HEMA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANJINEYUA SWAMY POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'shankar kalavathi', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'KEERTHANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Om Shakthi Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PRASANNA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BHAVYA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI VENKATESWARA POWERLOOM INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MYLARI LINGASWAMI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'raviteja powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE CHENNA KESAVA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sree padmavathi powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI HANUMAN POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jyothi prasad powerloom industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GURU PRASAD POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMIDEVI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RATHNAMMA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SHIRIDI SAI BABA POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VINAYAKA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS LOKESH POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'IMTIYAZ POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Neha Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMINARASIMHA POWER LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Gokul Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sathya Sai Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'gampala mallayyaswamy power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VINAYAKA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LEELADEVI POWERLOOM  INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'B N Ramesh power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree chakradhaari powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUHEL POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DEVI VENKATESWARA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'balabanda lakshmi narasimha swamy powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KUSHI SREE POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MADEENA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Shajahan power loom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NARASIMHULU POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'D Sreenath', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SADA SIVA SHANTHI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI MANJUNATHA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KALASAMUDRAM NARAYANA SWAMY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Naga Lakshmi Power Loom Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Srinivasa Powerloom industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dinesh Power Loom Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SYED FAKRUDDIN', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'M V RAMU POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G UDAY KUMAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E EKAMBARAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M RAJAGOPAL POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M ARASU POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K MOHANA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V GUNASEKHAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K DEVANADHAN  POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V RAJA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G SANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J CHOKKALINGAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'M S GOPAL POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A A  Sivaji Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E VADIVEL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G GUNASEKHAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P C AYYAPPAN POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VARASIDDI VINAYAKA POWER LOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHUPATHI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Ranjitha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C P Perumal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S V SULOCHANA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E P Elumalai winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K E SANKARAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'C Chandraiah Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'namo venkateshwara power look unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V P GADIKACHALAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S C Ekambaram Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V suseela powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Govindaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K shankar powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K Sundaram Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C G Murugesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 's Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURUGAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T krishnamurthi powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N Parvathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM SHAKTHI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S KALYAN KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S PERUMAL POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V K Srinivasan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P O Deenadayalan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P T Suseela Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Krishnan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R RAMAKRISHNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R MANJULA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'g lokanadha naidu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P O  Parthasarathi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M C GURU MOORTHY POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p d lokammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANALAKSHMI DHALL AND OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KR VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E JAYANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm g hari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C G Vijaya power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S BHARADHI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R N R Fabrics', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P D Bharathi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K SREENIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R N Murugan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M ARULKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Padma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K ARUMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Radha Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KP MANIKYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P O Lakshmiammal Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A R Selvam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MV BASKER', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SM SRINIVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N Dhamodharam power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V Tamil Selvi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S SASI KUMAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Senthamaraj Kannan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S Sivaji Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M DEVAN POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R C Vasu Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k k natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S Viswanadhan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S E Panchalamma Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S PADMAVATHI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R R Meena Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANJULA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B P DAMODARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S E Raja Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E A DEVARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G Arumugam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOVINDARAJAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S Ponnuswamy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M L ARUL MULI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Jayakumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RD IYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V SURESH POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k m desappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R U SANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P Parthipan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K ANANDAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Venkatesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A R Shanmugun Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E S POONGODI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R P Ganesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Valliammal Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V Ekambaram Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A VENKATESH POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D N Sampath Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RANJITH POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G Lokanadham Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A B Devarajan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N V THANGAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dhandapani M', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M GANESAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gundam Govaradhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N K GANGADHARAM powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Bala krishna', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U Lokanadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G BALASUBRAMANYAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S KAVATHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm venu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M MANI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Radha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'salammal winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E Jayaganesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G S SARALA WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V VENKATESAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N Ayyappan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k k umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A Ganesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V EKANADHAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P KUMAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'v Chandrasekhar powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M L KAMALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N C KARTHIKEYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M manikandan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Venkatesan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R jayaraman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chowdeswari powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'E S  Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S o orappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Murugan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G SANKAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PERUMAL POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p s radhakrishna', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Kuppaiah Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Sekar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A KANNIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S DURGA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Mohan Raj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KPALANIYAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Vedachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAJJAGANTA RAMA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Ramoorthy power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Ravi Shankaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S J Dhan Sekhar Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S T PUNYAKOTI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'g padmanaban', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V R SACHIDHANANDHAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N Kaniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Bhaskar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N Naresh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C ALAGAPPAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C P GURUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G NARAYANAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R LAKSHMI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p a ramesh powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C R Nagarajan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P DAMODARAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D E SWAMINATHAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D RADHI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAGANADHAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S N JEEVAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B P Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M E Malliga powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Maha Lakshmi', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'A S Ayyappan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E P MURUGAN POWERLLOMs', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P T Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Alimelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Murugan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E G Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C D Murugavel Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'p g ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Venkatesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A B Ekambaram Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A  D udayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K Thangaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E Gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Velayudhan powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S TIRIKALATTI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Muthu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J G Hari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V A MANIVANNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V P MURUGANANDAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C P Ganesh Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Payani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Raja', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Khadhar Basha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Rudrappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Dillirani winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E L BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K PALANI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Ramamoorthi Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Somu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V R Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayashankar Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm sambandham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M Devaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Nakheeran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bg meenakashi sundram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T M DAMODARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Jyothi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Tamilselvan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chandran Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p s p jayakanth', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K Perumal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Venkatesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TG Sasi Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M Sivagznam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p m thiruvengadam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R Sekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Subhashini', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p d mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R M Palani power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p g lokanadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S ARUMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N N Govindappan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C G Thulasi Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kotaiah Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Balu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S Panchalamma Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Viswanathan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bg manigandan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S Manickam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B R murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Rajendran Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Parthiban Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G Ravi power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V INDRANI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARajamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatesam Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Somasundaram Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'c lakshmi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K manivannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M ARUN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G SHELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S VBHAVANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Murali Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm v shankar mudali powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CP Munirathnam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'n a murugappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S EKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k r gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T A GANESAN POWERLLOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V R Ravi Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k vendam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G Malliga power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', '5312210001306', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V SIVALINGAM WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A R SUMATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Santhamma Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S AYYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Nethaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TA NAGALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Muruga Reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D G DILLI RAJA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A E Jagadeesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C N Perumalu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V G Veni powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Venkatesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V SELVI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A SAVITHRI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R SOMASUNDRAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S VEERASWAMY POWRLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R Mani power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Munirajulu Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Nedunzeyan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N R KAILASAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N J UDHAYAN POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A Eswaran power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K DHASKHINA MOORTHY POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A AYYAPPA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M PREMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N s sankara modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P L SUBRAMANIYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B S Pandu power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S S Krishnan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M Krishnan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Ponnuswamy Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P Nagarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A A NAGARAJAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V A Venkatesan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K Ramaswamy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M P Srinivasan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Appadurai Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK BALAJI POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P C Eswaran Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R R Kesavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'K R Iyyapan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P VENKATESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C D Urappan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M Malani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V k Murali powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B N MANIKYAM POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R KALA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ayyappa Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P R HARIDOSS POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P R SHANKAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R S Dilli kumar power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Hama kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Sundaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Arumugam balakrishnan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S PAYANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BS Ellappan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Seshan  Winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S UMAPATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Palani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V JAYARAMAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P V Kalathi power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Shanmugam power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N N Nanda Kumar Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E Dhandapani powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Dilli Babu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C JAYASANKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'C ARUMUGAM POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'B S LAKSHMI Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M ELUMALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G Jayanthi Winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G R Murugavel', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P P Vasudevan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K SELVAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P R Ramalingam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M T Topaswamy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C S Shanmugam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mida Natrajan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N Sekhar Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'c e govindhaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P C RUDRAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C K Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Gandhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Ganesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C RAJENDRA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 's n gurunathan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DD VALLI WINDING Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS manikuppan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M N ARUN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaya lakshmi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A murugappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T A JANAKI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P M Shanmugam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K E Kuppaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Krishnan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E Sumathi power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K DILLIBABU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k s moorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Purushotham Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MP chakrappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lokesh Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G Janaki Raman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M Chokkalingam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Shankar power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gopal power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Melapoondi Karthik', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c purushothaman powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K Damodaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS GAnapathi powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V G Kumaran powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A M Suresh Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ELLAMMA FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'D S BALA SUNDARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V SUNDARAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Srinivasan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S S Karpagam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G M  Kanniyappan Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K lokanadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S Venugopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N Saritha winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K MEGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C R Loganathan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R CHANDRA shekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Thulasammal powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K NAGAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P VENKATESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'E S GANAPATHI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P Ponnambalam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R D SIVALINGAM unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S KUTTIYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K Venkatesan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V Velu power loomes', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V Sachidanandan powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G MURUGAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N GOVINDAPPAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R KAMALAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v salamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R Venkatesan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Sharadha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VG Gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S SORAKAYALU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V  Arumugam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A UTHAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R A Vasanthi Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P Murali Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M O Selvam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B D Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Rangadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p p lakshmammal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Pandurangam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V ARMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Ellappan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Gajendran power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V PUNIDHA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B S Santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Maragadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D L VELAYUDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R SELVAKUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R P Ekambaram Winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E VENKATESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E nagaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VK LATHA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G Ramdas', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R P SOMASUNDARAM POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lavanya power loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M MUNASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R S CHANDRASEKHAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B N Venkatesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P G kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E MANIGANDAN POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AK MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A  E Kumaran power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M Velayudham  Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P S SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M Vekatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V R GURUMOORTHY POWEOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'G velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K PUVAYE POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C R Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K Sumathi power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R C SHEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R Ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P Anandan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PS VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S S BALAKRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C S Sekhar Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S MANI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G Saradhi power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Ayyappan Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'E Jayachandran Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R E Sankar power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A Ayyappan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A O Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C A Elumalai Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V chidambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Krishnan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S SADASIVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p s subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R D Sekhar Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahalakshmi Agro and Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mayandi Ganapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N Gopal power loomed', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V M Krushnappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NV Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E Perumul Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S R SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R Ganapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B D Raja powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M T Balan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'E Thanikachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E srinivasan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S m Sampath powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R KALAISELVAM MANUFACTURING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M Sadasivam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R G Ekambam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M N Krishnan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D BALU REDDY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P raman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'c chokkanadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Tamilmani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M LAKSHMIPATHI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Salamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R LOKANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C E Krishnappan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm j lingeshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AM Meganadhan power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V K Ramesh Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M Murali Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R P Palani Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C M Meganadham Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N K Viswanadan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Rukmini', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Velayudham Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C R Kuppuswamy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A VALLUVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'v m ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vijay kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'c moorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M M Santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A D Devaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P E Jagadeesan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S M MURAGESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P selvi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p s navamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Sadasivan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Janakiraman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Ramu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R Ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annadorau', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M SURESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K parvathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R N Bhaskaran  Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Panjaksharam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Perumal mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R kavitha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manigandan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V K KANNAPPAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K Damodaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C SALAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RR Selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Nithyanandam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ambalathandi Seetha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's g nagalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C K Sivalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C G Srinivasan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'p venkatesulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P AYYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B H Pandu Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRITHREEKOTESWARA THREAD WINDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A Neduncheraladhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R N ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Gopal reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C E Dhanapal Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S LOKANADHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Ganeshan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V Arun', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A vajravelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'E V Alimelu power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G HARI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E N Dharmalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P AYYAPAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V ELANGOVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Kandappa modili', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C B Dhanalakshmi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U gangadharam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T N NARAYANASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P D NARAYANA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N Uvaraj powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'murugappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K KAMARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G Ramu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G Suresh Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M GOPI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shanmugam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Ganapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajendraprasad silks', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVAYANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S M KANNIAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Paravathur gopal Vijayan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A NARAYANASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S MANIKANDAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R G Ramakrishanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Varadha reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A BALAKRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V C DHAMODHARAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S KUMARESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Ganeshan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G Dayalan powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P m seKhar powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S D RAJARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G K Nagabhushanam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Himachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V a devika Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M VENAMMAL POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S hari POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Ramalingam powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'J N dillirani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Kavitha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Neelagantan powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GN Sekhar power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S THYAGA RAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Payani s a', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Singaram Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mohana power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P j viswanathan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUBRAMANNESWARA FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B P RAJESWARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V Menaka', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D Balan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Velayudham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Prabhakar powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P m bala subramanyam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V A MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V m kanakavalli powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Dora veli power loomes', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DORASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V KANDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N C Kothandam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'u aeyumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bandaru Anjaneyulu silks', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D GNANAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jk sasikumar powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K KAMALA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narasimhulu loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'R N Raverndran power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P A Narayanaswamy Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHANANDHI COOLING AND PURIFIED DRINKING WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Dandapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N KESAVAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Puttur kuppuswamy murthy powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K C SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's s krishnan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T M Lokeswara power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Eswara Reddy power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A parimalam powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'k subramanyam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C M SADASIVAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T M Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M BMuthukumaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Sadasivam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V A SEKHAR POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A dilli raju', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D Dhanapal Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Revathi Industry Digamarru', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'k Dhanpal powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P V VENKETESH POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M s Munaswami Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Balan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VG LAKSHMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K Saradha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K e Iyyappan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k Dhanpal powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V Nagalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M K Sendil kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Dinakaran Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K R  poongodi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P C DEVARAJ POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PT MAHESH POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K v ESwari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M JANAKIRAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AD BHASKAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's vinayakan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VG ANANDAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M s kalathi Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANESH THREAD WINDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'V m sanjeevi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S d dayalan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S NATATAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sorakka kanniyappan Subramanyam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a r meenakshi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA TEXTILES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B L DEVAKUMAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T K Appaaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N E Annadorai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K Rajendran Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A c srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Dandapani Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S A Gajendran Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S AYYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v Muthuvelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k s vallathur', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E VELU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T E DHANAPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P MOHAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N Nethaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E Annadrai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Viswanatham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M ESWARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S K SRINIVASAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'p g ramalingam powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G BALAMURUGAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Pandiyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vv kamaks', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S T SATHESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Jayapal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'B S Nagappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P J Dayalan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G RANGANADHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shamala industries', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SYAMALA TEXTILES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T T BABU POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'm s elumalai Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R devan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PS Iyyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C C LALITHA POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BBharathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'm santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G S Kavitha power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Munivel power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R THANGAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MA NAMASIVAYAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V k sudha powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'v m venkatesam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Valli', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R kathirvelan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Dilli Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M RAMANAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K g rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N ELANGOVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M G Chandran Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E VIJAYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C Rangappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V Thoyavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KULA KUMBESHWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM SHANTHI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHOWDESHWARI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VG DAMODARAM POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N JAYALAKSHMi Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARANGI A Kesavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S E kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A VEL MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T J Desappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARAKA FABRICS', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Rajeswari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M krishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm dhayalan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAN POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M g srinivasan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C P CHANDRAN POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T E DHANAPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Vinayakam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Arjunan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PK THUKARAMAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V K YATHINDRAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHANTHAMMA POWER LUMES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P k krishnan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R D Pandu Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P P AMBIKA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P E Eswaran power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S PRABHU POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm m natarajan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M B Geetha powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'c rosu modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k nagaratnam powelooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P K LOKANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R D AMBIKA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P KRISHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K PALANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P M KANNAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P M Subramanyam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E N Sekhar Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S VASU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'E A DANDAPANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T M MANIKKAVASAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P vijay', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K Vinayagam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G NARAYANA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S M Geetha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S SIVANANDAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ambalathandi Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Jeevanandam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Saravanabhava', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A SEKAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'k arumugam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R RATNAM MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramu Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'B K Jyothi raman', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Doraswamy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A M Rajesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMESH SMALL SCALE POWERLOOM UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKANNA SMALL SCALE POWERLOOM UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N VARADHARAJAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sundar Raman Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M G Masilamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G K Krishnan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P GOVEESWARAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C E GOVINDHASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'T A MURUGAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M kalathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMAN SMALL SCALE POWERLOOM UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Annamalai powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V V Panneer Selvam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P D Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AKesavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A T KALATHI MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K Hari krishnan Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G K DAMODHARAM POWELOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D S LOGAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P E Annadorai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Doraikannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RDoraikannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K Gopi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S SELVI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'C Bhaskar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G AVANAKSHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N C Rajmohan Warping Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E B Srinivasan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'mehesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R Sivaprakash', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R k Arumugam power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B M Thangaraj powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G BALAIAH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Perumal ower Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A kamala Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R SUBRAMANYAM MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Gnanasivam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BK srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B K Vijayavel', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S kanniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D V Lakshmi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Venkatesan Warping Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ripunjiyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A Hari Dass', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M R RAMESH BABU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N P sathyam moorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B K Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Sarojamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Haridasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Ulaganadham Modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASGopalakrishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y GOVINDA SWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEKrishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K V Ganapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V Vadivelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M Murugesan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Shanmugam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S VASUDEVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A M Palani power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Ganeshan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A P Thirmanigandan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M R Sankar Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K RAJENDRAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P P vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v krishnan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V Subaramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R Gnanasekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K ESUPADAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABBU Sakunthala', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M MURALI KRISHNAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Alimelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S k mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Jayapal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A Nagappan Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S E Lakshmanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S MOHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S P EKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A MOHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Padmavathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G Damodharam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Velumani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V SHANTHI power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M U Ramesh power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E A Mani Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K KANNAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R LINGAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Osuru', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NJ Anandhan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K Kodhandam power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S M Gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Lakshmi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K V Keshavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D N Ayyappan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M N Murugan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Chokkalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S P KRISHNAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S J Doraivelu power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MM Munaswami', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Olichandran powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K J KUMAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S DESAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Venkatesham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Venkatesan Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a a chinnapachayappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P B RAJAGOPAL POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K SHEMBAGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Ganesh Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N Subramani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Murugesan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Ganeshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B N Vasudavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T A Reegan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S C JYOTHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S Arunachallam Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S Kuppuswamy power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S Ravi power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'U Kuppaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N Raja', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S karunakaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M SHANKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Thamas', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C E Gangeyan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T K KRISHNAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S V Arumugam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S VASUDEVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Murugesam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C K Chakaravarthi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T V VIJAYAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M s bhogendhiran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K Uma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Sundharm power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AP ARMUGAM powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'A C Rajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Jyothi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G SELVAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Govindaswamy power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S chinnaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M s kannappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K Selvamani Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Meenakshmma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V Bharathiyar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S KRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K BABU POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S S Pratap Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S J Durga Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Peddapacchaappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A JAYACHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G Balan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M VENKATESAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k Anandan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G Murugeshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K N murugan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S KAMALAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k c ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'E V VENU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N Srinivasan Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SV Devi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K PONNURANGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B D Raghu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S D Sekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hanuman fabrics', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'P D Sankar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B V Mohana power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P Soraka Swamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S SUGUNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AK Gangadharam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B K Munaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'm n srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P S DHARMA LINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'k S Shanmugam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D PATTABI RAMAYYA POWERL00MS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'V S HARIBABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S BALASUNDARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S A Manigandan power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'P B Subramanyam Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M E RAVICHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pg sorakayayulu swamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J E Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J E Kumareshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Hemanadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Mohan powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M T PURUSHOTHAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Arumugam weavings', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P yashodha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R PREAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Sharavanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Sidaiah', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K SARAVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P C Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S A Thanikachalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U A Vasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Kanneppan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G K Kailasam power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S VENKATESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Tanuja Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'M N Chinnarasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A ponnuswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U V KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M Velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T M KANNAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PA selvi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P SEKAR HANDWARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E SWAMYNADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R Kandaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N NAGARAGU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R M GOVINDASWAMY POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'U KUPPUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's dhamodaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Gopi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k m desappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ps swapna', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A somasundaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K P Karunanidhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D C Sekher', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D A Velu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T M VINAYAGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S Lokamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S PADMAVATHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K NAGARAJU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D R Thirunavukarasu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Ramesh power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E JAMBULINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P THANIKACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y G Thangavelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S E RAMASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S E Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D P Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D M Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G Kannappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Yuvaraj', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Bhagyaraj Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pg gopal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M S Rajendran Mudali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V Ramaswami', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Armugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S G Menaka', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P Kumari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A RUKKUMANGADAN LATE A A ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KR Mani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PA Saritha', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M DYVASHIKAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MM Annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Narayanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Lokanadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E Raghu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A Manjula', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sarath kumar R A', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V MURUGAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's s kumaresan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S J Keasaven power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C M Ayyapan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHOUDESWARI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R MUNASWAMI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A Thandavan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S M Saravanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N muthappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T RAJ POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'B P MANOGARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K PURUSHOTTAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's ESWARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R A Hemanth kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V salamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHAMU TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D N Syamala', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N S Sarasu Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S Kanagasivam Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R P Santhosh Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K CHEGALRAYULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI S SOMASUNDARAM MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D K Nagarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI R SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Gnaneswaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A KANNIAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S BABU POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A DORAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMBALATHANDI BALAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K  NAGAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K MURAGESHAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Avanakshi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V Dhandapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A Anandan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C G Loganadham', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S S Arumgam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C E VARADHAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A HARI KRISHNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N N SARAVANAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A A Thiruvenganadam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K KESAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T A Shunmugam Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'a subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P KANNAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K HARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SV Kannappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S NAGALINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V CHANDRASEKAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI S PERISWAMY                      LATE S KAILASAM MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J S VINAYAGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K Maniyappan Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R J Oosoor Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Devarajulu Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Krishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Ayyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P suguna', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E Pattamma Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'as bogaraja powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N Krishna', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A GOVINDASWAMY MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S chidhambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Ekabram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K DESAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P Dinesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R P Kesavan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N V DESAPPAN POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Kalayanasundaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI DEVI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI K KRISHNAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R A KALYANA SUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U K NAGAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G kalyanswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S VADIVELU MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghupathi Power Loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P K ADIMOLAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P SUBRAMANYAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI A N RANGASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S AEYUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S ANNAMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm lingeshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's g narayanaswami', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TANGI VIJAYAKUMAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI A S RAVI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N Thirumurthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V RAJALAKSHMI POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M sampoornamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G sanjeevamal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A E GURUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S JAGADEESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E EKAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A J BABU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S KESAVAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V AYUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TN mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S ARJUN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Balan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm dilli babu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A KANNIAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Rani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U Kuppuswamu modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S C PONNUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D A BALAJI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm m kumaran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D chathravada savithri', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K Kalpana', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Ramalingam madali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI A VAJRAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's mohanamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A L NAGARAJU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p s venkatesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K N THIRUNAVUKARASU POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A DHANAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S VIJAYAMANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Latha Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A ROSU MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R GUNASEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G JAYARAMAN POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S P THANGAVELU POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AD BARATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A G Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Kanniyamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Kanniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K sivalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D G Jyothi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm m vinayakam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Ravi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SANTHI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's Kandasamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K ANANDAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'D A Ayyappa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A C KUTTIYAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N KUMARAVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R Karuna Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A Govindaswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Balan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K E ELLAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A C GOPAL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M R Munivelu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N Dhandapani Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N Hari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A GOVINDASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI B ELUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI A C ARJUNA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G VIJAYAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R Chandran Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S Sorakayulu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Ilangi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A EALUMALAI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Shanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V JAYACHANDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI A K PANJATCHARAM          LATE A R KUTTIYAPPA MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Gnanaprakasam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G ARUNACHALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI M RAMASWAMY MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K KANNIYAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Dillibabu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A MAHAGINGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A K Urappa modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A PONNAMBALAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAMUNDESWARI POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'A V SHANKARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G JYOTHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S K CHIDAMBARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P DESAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K Ayyappan Warping Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S Kalaiselvan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A U Murali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M MOORTHY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G S Dhamodharam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K Raghupathy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Nallapuriamman Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ponnemma Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'd s natarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A R THIRUNAVAKARASU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Gnana prakash', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A S Gnanasambandam power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M Raghu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V E ANANDAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P VADIVELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S Umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N P Hema kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G ULAGANADAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T K Babu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E ponnambalam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Tiruvengadam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U Avanakshi modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A BALAKRISHNAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K ARMUGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S V RAMESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AMMU POWER LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P D THENMOZHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sekhar powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI TEXTILES AND FABRIC', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K D THULASIRAMAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'U N CHINNAKUPPUSWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V M ELUMALAI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P M Dayalan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S Mahesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S THANGAVELU POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P E MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R C Devan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K G ARUL', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A G Perumal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N K Padma Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sandhan kannapa Mudaliar Bhupalan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R Ramamurugesha modali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V R Vijayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V N Sanmugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Bhupathi Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'tent house', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E K Karthikeyan Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S Annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T S Ramachandran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M P SELVAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T K Ashokan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'E R Subramani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M N Thyagarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Krishnan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'D N Mani Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B V Ellappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D S PAYANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ambika powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V K Loganathan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M Balakrishanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V P PADMANABAN Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R S Janarthanan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P V SANKARAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'P S GANESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S  K Hari', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B M Jyothi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B E Kokila', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S K Kalaivan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RM mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Maheswari Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gemini Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ganeshan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Thulasi Anbarasan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K M SRINIVASAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B Natesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'E S Kanniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A K BHOOPATHY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T S Kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balakrishna Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K K Mohan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R R Govinda Swamy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S G Gajendran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T R Karthikeyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Ramu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N MANI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kasthuri Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V MANIGANDAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ELANGOVAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A B Murali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Supercasting Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HEMALATHA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K K PANDURANGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sankaran Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PTR Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Parvathi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chandran Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anand Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dharmalingam Power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vinayagam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramdasu powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K P PONNABALAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Raghupathi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ganesh Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sivalingam Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Palani Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S JAYAPRAKASH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M L Chakkarappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganapathi powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N IYYAPPAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S DESAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kannapan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A Chakravarthy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N Dakshanamoorthi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Balaji Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Arulan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K Rajeswari Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D Arumugam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sambandham Pandian', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sathya Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Natarajan Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yamani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'dhasharni', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M S  Ramesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Damodharan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Shanmugun Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CK Ganesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Likitha Powerloom Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Blue Star Andal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kannan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARSHINI POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'R H Balamurugan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sujathamma powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Namaskar fabrics', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ak sathikumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Poongodi cotton cloths', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V V PANDURANGAM TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'PP Umapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ratnam Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'MURUGAN POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V SEKHAR POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MURALI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manjunath power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAYA VENKATARAMUDU POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SADGURU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naga Devi Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P GANGADHAR POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MONICA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BALAJI HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'NARENDRA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'T D SURESH TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'INDIRABALA FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Rama Krishna Power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narasimhulu Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMESH POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'JAYACHANDRA POWER LOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BOOPATHY POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANUSHAA FASHION FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ms SRI GANESH FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NANNA COTTAGE INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MONICA FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'S K RAVI TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE MEENAKSHI SILK AND SAREES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MUNENDRA POWERLOOMS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'OSM Garments', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Shana ladies taylor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SATYA KRISHNA FASHION DESIGNERS AND BOUTIQUE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'GAYATHRI CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANWAR KHAN TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K Creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANDHRA HANDLOOMS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'AKSHAYA BOTIQUE SAREES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chaitanya powerloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suhasini tailoring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijayamma tailoring center', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'varalakshmi tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALA HANDLOOMS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI YASODHA COTTONS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SOUTH INDIAN CRAFTS', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Life Style Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'priyanka Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NISHITHA LADIES TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Geetha redimates', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Shankaramma Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRAVANI TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VRNUGOPAL TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RG CRATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KBS APPARELS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '49']
[' Industry Name ', 'Rangappa Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GS CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'BBS BASHEER GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Good will mens wear', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'eswaramma Taylor shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai Durga tailoring shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'friends tailoring shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'HASEENA BEGUM LADIES TAILORING CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAKEELA LADIES TAILORING CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI TEXTILES', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'MAX MEN WEAR', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhagyashree apparels', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SWASTHIK DRESSES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BHASKAR DRESSES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS JEEVAN JYOTHI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PARVATHI CREATION', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'MARUTHI APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'POORNIMA APPARELS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Raju Garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'HE MAN MEN WEAR', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MALLIK S APPARELS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'RS STICHING AND JOB WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'AJAY READYMADE GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Karthikeya Readymade Garments', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VAISHNAVI GARMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ravipati garments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'A 1 READYMADE GARMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SHAKTHI BHAVAN', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '21']
[' Industry Name ', 'Khadri Garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'reliance trailers', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Greenary fashions and garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SB REEJAN TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ammara fashion and design', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SN CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'STEP ONE JEANS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'R C TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Rajarajeswari ladies Tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MSTailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA SAI GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI GOWARDHANA CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'KVS Sarees and Readymade Dresses', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gowtham Creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Tej tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEETHA GARMENT', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'UDYA GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MAHENDRA CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MANIS GARMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sreehari tailors and cloth center', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI NOOKAMBIKA DESIGNERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Padmavathi Garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'SRI RAGHAVENDRA ENTERPRISES UNIT', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Suma Garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'SRI LAKSHMI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '42']
[' Industry Name ', 'T VENKATESULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade Garments with Drying and Washing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHU CAPS WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade Garments with Drying and Washing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanakadurga enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Reprocessing of waste cotton', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkata durga thread ball industry', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'REWINDING OF SEWING THREADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yesumani tenthouse', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Rope (Cotton & Plastic)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MPR industries', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Rope (Cotton & Plastic)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Krupa plastic industries', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Rope (Cotton & Plastic)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'keerthi ladies corner', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'venkata rao textiles works', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PEDDA CHOWDAIAH HANDLOOM', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nagasekhar textile works', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANNAPOORNA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Malli Sumathi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REKHA LADIES TAILORING CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH PRINTS', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '32']
[' Industry Name ', 'B S ABDUL RAHIMAN', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ISHQ DESIGNERS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SAREE DESIGNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'GURUPAADA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri manju Ladies tailor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari hara ladies tailor shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shanu ladies tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MSV TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A A Somasundaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NARASAMMA LADIES TAILORING', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HARITA TAILORING SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'YerrajoduRamachandraHandlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N ANJINEYULU HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B PRAKASH HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'padmavathi Hanlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JANSI SILK SAREES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GURURANI MONOFABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ramesh Babu power hand looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'rangaswamy handllom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R VENKATARAMANA HAND LOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'eswaraiah handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kullaireddy handllom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S KESAVAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eswaramma Handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C RAMAKRISHMA HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S ANAND HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Mallika weaving textiles', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHINNA BALAIAH TEXTILES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S RAMACHANDRA HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V NAGASESHU HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B KESAVA HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B MALLIKARJUNA HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A srinivasan weaving', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hussain handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K PERIYASWAMY POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V B POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V B SORAKAYULU POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G THYAGARAJAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P T RAJENDRAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P RAMALINGAM POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J PADMAVATHI HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAJJA TEXTILES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Sreenivasulu Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hariprasad Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shanthamma handllom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'silk weaver', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Thulasi Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkatalakshmi handllom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HarikrishnaHandlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkatesh HANDLLOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MURALI KRISHNA HANDLLOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V SREERAMULU HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yerriswamy HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G NAGARAJAN POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahabjan Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SUPRIYA SPINNING MILLS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '322']
[' Industry Name ', 'Yashoda power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K RAJU', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayachandra Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Narasimhulu hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ribest Ribbons and BowsIndia PVTltd Expansion', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '321']
[' Industry Name ', 'P SREERAMULU HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K NARAYANASWAMY HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saraswathi Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkatesulu', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rubiya Babu ladies tailor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jyothi ladies tailor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMA MOHANA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI narasimhulu loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narayanamma loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Mens wear', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Subbrayan spinning', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Ekambaram', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pullamma powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chennamma powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'thirumala kondaiah powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi devi powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chennamma power looms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'naga lakshmi powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pandurangaiah powerlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NM Valliyammaal', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rajasekar handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'munendra handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS KANDUKURI INDUSTRIES PVT LTD WEAVING DIVISION UNITii', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '47']
[' Industry Name ', 'UMA SPINTEX INDIA PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '271']
[' Industry Name ', 'M Nagalakshmamma Weaver', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SEELAM SREENIVASULU HAND LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V PULLAIAH HANDLOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshminarayana hand loom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jayaramulu handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagendra', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B MUNISWAMY   hand loom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'basheer hand loom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bhaskar handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Adi seshulu hand looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ashok Kumar Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Srinivasa Agri Processing Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GM Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sudarsan silk factory', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sreenivasa power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sharada ladies tailor', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chand Basha tailoring shop', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'guru taylor', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI TIRUPATHAMMA BAGS AND REPAIRING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SAR DENIM PRIVATE LTD PHASE-III', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '217']
[' Industry Name ', 'SHIVA TAILOR SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GSR TAILORS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rafi Rexine works', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JYOTHI TAILORS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SHANU LADIES TAILOR', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'textiler', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ZEN LINEN INTERNATIONAL PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TECHNICAL TEXTILE PRODUCTS AND FILLED GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '407']
[' Industry Name ', 'venkatesh tailors', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TECHNICAL TEXTILE PRODUCTS AND FILLED GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Santhi handlooms', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TECHNICAL TEXTILE PRODUCTS AND FILLED GOODS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TECHNICAL TEXTILE PRODUCTS AND FILLED GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '27']
[' Industry Name ', 'GARUDA POLYMERS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TECHNICAL TEXTILE PRODUCTS AND FILLED GOODS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'CHOKKALINGAM TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TEXTILE CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHOUDAIAH SAREES MANUFACTURING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TEXTILE CLEANING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRIPRABHA SPORTS MATERIAL AND GARMENTS INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TEXTILE CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MSR AGRO PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TEXTILE CLEANING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri dhanaraj tailoring shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TEXTILE CLEANING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A S BALAJI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'putha sreekanth handlooms', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KNR Tailors', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D N KAnneppa', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NRAYANA POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'pavan shamiyanas', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SANJAY TARPALEIN WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'PENETI SAREE MANUFACTURING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata taviti Raju tailors', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T Santhi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVEEN KUMAR POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S MANOHAR POWER LOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V Ajay kumar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'raju wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K K MENS WEAR', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shivasankar Power looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'anand tailoring', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURESH PANDURANGA STEAM IRON', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'pavani tailoring', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chakali Ramanji laundry', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'P N Rao Tailors', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VARI TEXTILES PROCESSING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '22']
[' Industry Name ', 'LAXMI GANESH POLY PRINTS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'G R TWISTING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Thread Balls Manufacturing Using cotton and coir', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Siddeswara Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Hanuman Powerloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'SHIRIDI SAI POWER LOOMS UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Yuvaraju Reddy Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Venu Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Anandraj Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Subramanyam Powerloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Uma Sri Powerloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'R V Nagaraja Reddy Power looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'T K RAVI WASHING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'Sri Harini textiles Limited', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'P O Thanikachalam Dyeing Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'T L MANI MANUAL DYEING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'T K VASUDEVAN BLEACHING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'K B NATARAJAN MANUAL DYIENG', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D M MANIYAPPAN DYING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'M G BABU MANUAL DYEING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Jagan Mohan printing', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'E VIKRAM MANUAL DYEING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'P G MENAKA MANUAL DYIENG UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'A V KARTHIKEYAN MANUAL BLEACHING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'K A NAGARAJAN MANUAL DAWING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'M K J DYEING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'ANNAI INDRA DYEING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'T P VENKATESAN DYEING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'B D KUMARASWAMY DYEINGA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'RAJA BLEACHING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'KONERI MUNEEPA BALAJI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Sri vasavi dying works', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '18']
[' Industry Name ', 'CHRISTY COLOURS OR AMMAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'B M Kamala', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN DYEING AND WEAVING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAGYALAKSHMI DYE CHEM SATRAWADA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN DYEING AND WEAVING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THE PULAGURTHA HANDLOOM WEAVERS COOPERATIVE PRODUCTION AND SALE SOCIETY LTD DC COTTON YARN UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN DYEING AND WEAVING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'E C S Hand looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN DYEING AND WEAVING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'P S KALAISELVI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M RAVI WARPINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Janakiramudu', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHUVANA FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'A Krishnan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Anjali', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DRM selvi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P H Poongodi warper', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ponuswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Vasanthamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Vasanthamma', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ponuswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G THANGA MANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N G NATARAJAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P ARUMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R Ramesh Warping', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkatesh Warp Makers', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B M ARUMUGAM WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P P Iyyappan Warpings', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Murugesan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M Elangovan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C K Rajudorai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S VINAYAKAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M B OVIYA WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M DEVARAJ WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V SELVI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G ELUMALAI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G K URAPPAN WARPINGS AND WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M k venkatesan warping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Nagalingam Warping', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Koneri Murugesan Thirumalai warping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N V DAMODHARAM WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A P Sanjeevi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V PANDURANGAN WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P NARAYANAN WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V mohan warping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G V SUSEELA WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R E Dhanapalan warping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M KANAKA WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N P Ganeshan warping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K M Shanthi warping unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A G SHANMUGAM WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V Kumaravel Warping Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J S Umapathy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M ARUNA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A G KODHANDAM WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Geetha wrapings', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G Nagarathnam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S P VELAYUDHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S ELLAMMA WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K N CHITTY BABU WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T V HARI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M VISWANATHAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G E Damodaram Warping Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N sekhar', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KACHI MANIKYAM MANI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V S Devarajan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M K SIVA KUMAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOORTHY WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S K KNNIYAPPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K S SEKAR WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vallathur Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G ANNAMALI WARPINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M HIMAYACHALAM WARPINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T E SANTHI WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R NAGARANI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T G RUDRAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M M SANTHI WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A R KUMARAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARTHIKEYAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KANDHASWAMY POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M G KUMARAN WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lokanadham Hand Warping', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N N GANGADHARAN HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'N K S LUNGI COMPANY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GURU RAGHAVENDRA TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'S D BHAGYARAJ', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Estegi Sizing', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'KEERTHIMATHI TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NANDA KUMAR WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P R LOKAMMAL WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prasad warps making', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K A SANTHI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P K HARIHARAN WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P H Poongodi winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T K PADMAVATHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G D SELVI CONE WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M CHANDHAMARAI WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V KRISHNAVENI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R N DAMODHARAM WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SUBRAMANYAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E AMARAVATHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G D GEETHA WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'N T KANDASWAMY WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J V KUTTIYHILAGAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J P NATARAJAN WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K SEKHAR WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M PURUSHOTHAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Kumaresan winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J K JEEVARATHANAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T N BHANUPRIYA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V E GANGADHARAM WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P N BHAVANI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D K MEENA WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K E MUNASWAMY WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S VASANTHA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N SARASWATHI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A Dilli Rani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P M BHUVANESWARI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T A INDRA WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S VIJAYALAXMI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M KANDASWAMY WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A S Jayanthi winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G EKAMBARAM WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM DANDAPANI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V A THILAGAVATHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K E SANKARI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V Kumar winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A GOVINDA SWAMY WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K SUSEELA WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G RADHA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T ACHUDHAN WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K THIRUNAVAKARASU WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D RAJENDRAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P G JAGADEESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G Gangadharam winding Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S Gopinath Winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S KAMALA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M KRISHNAVENI WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N KRISHNAN WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM KAILASAM WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K JEEVA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T A ARUMUGAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N NAGALINGAM WARPING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M A SAVITHRI WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N DANDAYUDAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V NANAMMA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T A JAYA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P U JYOTHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Ellamma winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R S JANAKI WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S RANI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N V SUMATHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M C PONNAMBALAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M O suresh winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P SHANMUGAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K SELVAM WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G RAMESH WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V MEENAKSHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B S KANNEMMA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kk ponnuswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'M S Ganeshan Winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S PUSHPA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E KRISHNAVENI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N DHAMODHARAN WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T KAVITHA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'power loom A S kaniyappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K P CHOYAN WINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R BHANU WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M Radha Winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V E KAMARAJU WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P V SARADHA winding', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G RAMESH WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A D Ramalingam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A N Deenadayalan  winding unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M R RADHA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K AYAPPAN WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P PAVITHRA  WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J D SANTHI WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V VIMALA WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S SAKUNTHALA WINDING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V HARI PRASAD WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M PALANISWAMY WINDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A S MANI UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M RAMU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING AND REWINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Kumar Textile and Garment', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING AND REWINDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SITHAARTH COTTON YARN PROCESSORS pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING AND REWINDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '50']
[' Industry Name ', 'Senthil Murugan Textiles', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING AND REWINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SRI DEVI TEXTILESS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN WINDING AND REWINDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KUBER PRODUCTS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Cigarette manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '17']
[' Industry Name ', 'premier tobacco packers pvt limited', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Processing of UnManufactured Tobacco', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'MS SUNDARAM TOBACCOS', ' District Name ', 'Guntur', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Processing of UnManufactured Tobacco', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'AS TOBACCO COMPANY', ' District Name ', 'Kadapa', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Processing of UnManufactured Tobacco', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Processing of UnManufactured Tobacco', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MADDI LAKSHMAIAH AND COMPANY PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Processing of UnManufactured Tobacco', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Sri krishna tobaccos', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Processing of UnManufactured Tobacco', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'krishna beedi factory', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohammad Abdul Razakh Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mohammad Abdul Razakh Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Syed Yakub Saheb Sons', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Masood Tobacco Products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SYED NIZAMUDDEEN BEEDI MANFACTURERS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Mahaboobia tobacco crushing mill', ' District Name ', 'Kadapa', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'shiridi enterprises', ' District Name ', 'Vizianagaram', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Jitendra tobaccos', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAHALAKSHMI TOBACCO TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Velaga Subbarao', ' District Name ', 'West Godavari', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Durga Tobacco company', ' District Name ', 'Krishna', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco products including cigarettes and tobacco / opium processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Raja ram Bedi factory', ' District Name ', 'Chittoor', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'Tobacco products including cigarettes and tobacco / opium processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Padma Sri Tobacco Processing and Redrying', ' District Name ', 'West Godavari', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'TOBACCO STEM CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla tobacco stems work', ' District Name ', 'Krishna', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'TOBACCO STEM CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIRIGIRI NARAYANA', ' District Name ', 'Prakasam', ' Sector Name ', 'Tourism Infrastructure Project', ' Activity Name ', 'road metals and building stones', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASINAGESWARA INFRA LLB', ' District Name ', 'Prakasam', ' Sector Name ', 'Tourism Infrastructure Project', ' Activity Name ', 'road metals and building stones', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAMEEKSHA FUNCTION HALL', ' District Name ', 'Guntur', ' Sector Name ', 'Tourism Infrastructure Project', ' Activity Name ', 'Super Markets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Professional couriers', ' District Name ', 'Guntur', ' Sector Name ', 'Tourism Infrastructure Project', ' Activity Name ', 'Wholesale stores', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KHADRI HANDLOOMS SAREES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Siva lakshmi handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Handloom / carpet weaving (without dyeing and bleaching operation)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'Sri Lakshminarasimha Swamy Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Genius Bags', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'JUTE AND COTTON MIXTURE CLOTH', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'CHARAN TEJ POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENIGALLA NAGESWARA RAO', ' District Name ', 'Krishna', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUSEELA POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'T D Urmila', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SKN ARTS AND CRAFTS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'KALAMKARI', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'VELMURUGAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SURESH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MADHAVI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTUR OF MEN AND WOMEN UNDERWARE GARMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'National Bedding Works', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KARTHIK SAI CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ramu wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA AGENCIES', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURE OF BEDS FROM WASTE COTTON FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'HARI WASHING', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacture of Knit fabric and Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'YOGAMOORTHI POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVASAI NAWAR COMPANY', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhanalakshmi Cotton and Rice Mills Private Limited Spinning Division UNIT II', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MANUFACTURING OF COTTON YARN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '109']
[' Industry Name ', 'FEMINY ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing of Diapers and Sanitary Napkins', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI VENKATA SAI PAVAN POLY SACKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SRI BHASKAR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI RAJA PLASTIC INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS ASWINI BAGS', ' District Name ', 'Kurnool', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri mahalaxmi eco city', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Manufacturing unit of Non woven fabric items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'Aditya Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Safety Gloves Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VARDHMAN YARNS AND THREADS LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '42']
[' Industry Name ', 'SKAR Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikantan Power Loom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K T Rushitha Powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'MONOFILAMENT YARN AND MOSQUITO NETS MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VEERANJANEYA THREAD INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'G S fashions and kids wear', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Sai Lakshmi Ganapathi Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI MAHA LAKSHMI LACE TEXTILE PRODUCTION', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POLYSTER THREAD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Lakshmamma Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A P LINGAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V J GIRI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T VENKATESAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M B VINOTH KUMAR POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N R SAMPATH POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'arivati handloom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Srinivasulu Chetty', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K Rudran power loom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K SUBRAMANI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M K VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P A MANIGANDAN TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C S Ramesh Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CURRENTLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P SENTHIL KUMAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T LOKANADHAMPOWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MILLAMUDU VELU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P VIJAY KUMAR WARPING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D M MANIKANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S SORAKAYULU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Raja Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRINATH POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S KUMARASWAMY', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sricare Quilt', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bhavani Textiles', ' District Name ', 'East Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'B V MURUGESAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHIVASAI POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAMESH POWER LOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V V PANDURANGAM HANDLOOM AND POWER LOOM TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'K S NEELAKANTAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Power looms (without dyeing and bleaching)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MADHANKUMAR TEXTILES', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUBBU POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sudha tailoring shop', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI VENKATESWARA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sounhagya powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VARSHIN POWER LOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAMAPURAM YERRASWAMY POWERLOOM INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KUMARI HANDLOOMS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G  Adilakshmamma', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'S R SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar industries', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA TAILORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA  SWAMY KHADI SILK TWISTING AND WEAWING COOPARATIVE SOCIETY', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'KATTA NARAYANA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RE Senthil Nadhan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VINAYAKA SWAMY POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAGYALAKSHMI POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'PAVAN POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Naga satya tailors', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Choudeswari Power Looms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'INDIRA POWER LOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Padmavathi Enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'Sree Venkateswara Powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'POWERLOOM SILK SAREES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANJULA POWERLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'P E GOPI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Konaiah powerlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'EC SUBRAMANYAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V M RAJA POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V R DHANDAPANI POWERLOOM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C V Loganathan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M P Govardhan power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P B elumalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A R Karthik', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Dinesh', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K O MANIGANDAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MATHA CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'P E Nagappan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Udayan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narasimhulu loom', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P A Nagalingam power loom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AFREEN TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'v murugappan powerloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's k subramanyam powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E Balaji', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI DURGA WARPING AND WEAVING', ' District Name ', 'West Godavari', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S PATTU MODALI', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S K RANGANADHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A N NAGAMMA', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS Annamalai', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S MUTHU', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G a sumathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRVaralakshmi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M E Murugesan Warping Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Chakrapani', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B V DEVARAJ POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S KUMAR POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P S RAJASEKAR', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M M Kamala Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N N Ponnu Swamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K SOMASUNDARAM', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pujari Adinarayana', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Umashankar Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Seetha Lakshmi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'V N Nataraja', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S Gopi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S D Chandran', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganapathi Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'm s nagalingam powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'shiva jyothi readymade garments', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'M R Rajendra Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P N GANAPATHI POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'C Karthikeyan', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A E SOMASUNDARAM POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'V D SARAVANAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Kamakshi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA DRESSES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sekharan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B Bharathi', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kala Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Tirumala Industrial Belts', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Technical Textile', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M V NEELAGANDAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V Duraiswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M E NARAYANASWAMY POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Birla Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS Subramanyam', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DEVENDRAN POWERLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MUBARAK ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'TOBACCO STEM CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'P K JYOTHI RAMAN TEX', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SHANMUGA HANDLOOMS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI KRISHNA FABRICS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srinivasan Power Looms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GURRAPPA POWERLOOM UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sunitha Powerlooms', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Powerlooms', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Vedansh Garments', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Processing of ready made garments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P Masthan', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aditya Garments', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'READY MADE GARMENTS & SAREES EMBROIDERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'YSR TAILORS', ' District Name ', 'Kadapa', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manjula Tailoring', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krupanidhi Readymade garments', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri  Surya Creations', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Ready Made Garments Making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai Nandan Enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI MAHALAKSHMI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Readymade garments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'SRI MAHALAKSHMI NET TRADING', ' District Name ', 'Srikakulam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Rope (Cotton & Plastic)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '52']
[' Industry Name ', 'GOWRISHANKAR THREADS', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SEWING THREADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'veeranarayana handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'padmavathi handllom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sunitha HANDLLOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'aswarthanarayana Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pramila handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'suresh weavering unit', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'pNabirasool', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B KRISHNAMURTHY HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parvathi Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TATICHERLA KATAMAIAH', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S RAMAKRISHNA HANDLOOMS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sarojamma Handlooms', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P G L Handloom', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Spinning Weaving and Dyeing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'NEELURI SURYA NARAYANA  HAND LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAPPALA VENKATESH', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHENNAMAIAH SWAMY SILKS', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagaraju handloom', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'N NAGARAJU HAND LOOM', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'SPINNING WEAVING GARMENTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai handloom Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'TECHNICAL TEXTILE PRODUCTS AND FILLED GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS sai textile process', ' District Name ', 'Prakasam', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Textile Processing(dying)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Vinayaka textiles', ' District Name ', 'Guntur', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Thread Balls Manufacturing Using cotton and coir', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vigneswara Powerloom Unit', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'SREE RAMA WASHING AND ZERO WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES']
[' Industry Name ', 'REVATHI TEXTILE TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'YARN DYEING AND WEAVING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'SREE ANGALAMMAN TEXTILES  keerthimathi Textiles', ' District Name ', 'Chittoor', ' Sector Name ', 'TEXTILES', ' Activity Name ', 'Yarn Warping and Sizing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TOBACCO LEAF CUTTING', ' District Name ', 'Kurnool', ' Sector Name ', 'TOBACCO', ' Activity Name ', 'TOBACCO STEM CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AK AGRBATTI INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAVULLAMMA AGARBATTI', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dhanalaxmi Wood work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'dulipudi timbers production Pvt lmyd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Broomsticks making', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Om sakthi agarbakthis', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Guptha brooms traders', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GOPAL ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'BAMBOO STICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Ayyappa Woodworks', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Satyanarayana Wood Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'jai Durga carpentry', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivasa wooden works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Tirumala Furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ayaan Timber  Wood Works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'B Someswaracharyulu Aliyas Soma Shekhar', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ALPHA HASTHAKALALU', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'gidijala carpentry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Vijaya Panduranga traders', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bhavani shankar wooden furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Daniel furniture works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nagaraju Samin carpenter Shop', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Lakshmi Tirupatamma wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GOWRISANKAR FURNITURE WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Furniture Works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Neelammatalli Carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'OHM SRI VENKATESWARA DOORS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VENKATA KRISHNA ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Hanuman timber dipo', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Lakshmi balaji industries', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DHANALAKSHMI TIMBER DEPOT', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SATYANARAYANA CARPENTEING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Laxmi Hd Wood Designing Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ayyappa wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RAVI VARALAKSHMI WOOD WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Basha Sofa makers', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RASOOL TIMBER DIPO', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Srinivasa lathe work', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Star Design Works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'JYOSHIKARANI FURNITURE SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SRAVANI TIMBER DEPOT', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinu carpentrty', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CHITRI MACHINE', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SS interiors', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kamakshi Wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VARALAKSHMI TIMBER TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Srinivasa doors manufacturing unit', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Dwara Ramakrishna dwaras saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'narayanarao carpenter  works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'manikanta wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri lakshmi Balaji wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jeswanth carpenter workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri modhakondamma carpenter workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sai durga wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vishwa bramina siva kamakshi carpenter workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Rabbani wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri swamy saranam ayyapa saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NIDO INDUSTRIES PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DEVI CHITRI MACHINE WORK', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'polumuri nookacharyalu wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Durga wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kanithi Srinivasa Rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'M SIVA SHANKARA RAO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Om Sri srinivasa wood carving', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bujji wood work shop', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VEERA BRAMHENDRA WOOD WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NIda wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Satyanarayana Carpenter Work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'APPALARAJU WOODEN AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BHARGAV WOODEN AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'PALUVAI BRAHMAIAH', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinivas wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Priyanka Wooden and furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ganugula rajubabu wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'demullu wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'N VISWARUPA CHARI KASAIAH', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VEERACHARI CARPENTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Satyanarayana wooden furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vemavarapu achari wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Hema harika wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRINIVASA WOODEN AND FURNITURE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veerabhadram woodworks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Durga Bhavani wooden and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srisivaganesha wood and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Veera Bhadraiah Wood Works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI NOOKAMBICA SOFA WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'carpenter', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri Venkateswararao wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SREE MAHALAXMI TIMBER MART', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'doddetipalli rameswarachari', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Veerabrahmendra Wooden and Furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BRAHMAJI FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vinayaka Wood and Furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mahesh wooden and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Amma Furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri krishna timber mart', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kondababu wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Simhachalam wood work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'carpenter work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'pedhapati mahesh', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nagendra wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NAKL Wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SHIVA SHANKAR SAW MILL AND TIMBER DIPOTBOMMALA SATRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Manikanta wooden and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Visalakshi Workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nukaraju carpentry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nakkina Tarakeswara rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VENKATANARASIMHA', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ram prasad wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mahaveer Timber Depot', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vinayaka wood and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'baskara rao wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAI KRISHNA CARPENTORY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MVR Srinivasa riksha karjana', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'polumuri demullu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'DURGA AND TALAMAMBA FURNITURE AND TIMBER DEPO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'G Srinivas Wooden and Furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Tirumala venkata Ramana saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VARAHALARAO WOODEN AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'munasala sattibabu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Durga Bhavani wooden and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Simhadri nalla abhaie', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'munasala varahalu babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Dasari sarveswararao wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jagadeesh wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Lavakushalu Wooden and Furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'alamanda nanaji wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kalikaparameswara furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'anupoju nagaseshu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KANCHIKAMAKSHI WOODEN AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Veeraprabha wooden and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'maruthi wood works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nanaji wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ratna Kumari Garikapati', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SD Nagul Riksha Kharkana', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CARPENTER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Venkateswara Furnitures shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veerabhramendra wood and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vamavarapu varahalu babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kommoju lovaraju wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kommoju wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'thooribhatla srinu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vijji furniture', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'varahalubabu wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'molleti Prasad', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'rabbani carpentry workshop', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SUBBARAO FURNITURE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bala sanjeevulu carpentry shop', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vekambaram aachari work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SESHAGIRI FURNITURE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Maddali Sanjeeva rao saw mill  Medaramitla', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Lakshmi Venkateswara wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'hanuman carpentry works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Hazrat Khwaja Gareeb Nawaz', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri manikanta furniture and timber depo', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri kamakshi wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri siva shakthi wood carving', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Krishna Savithri Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bala Tripura Sundari Devi Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'OM DURGA VENKATA SAI KALA CARVINGS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Lakshmi Srinivasa Timber Depo', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kattar Hari nath timber works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NAGALAKSHMAMMA CARPENTER WORK', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MASHAALLA CARPENTRY WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CRESENT SAW MILL TATAVARTHY', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri lakshmi narasimha wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nazeer wood plaining and work', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Venkateswara Sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MD Saw Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Aparna Lorry body building', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Tumala Siva Prasad Achari Timber work', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Moulali wood', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Varalakshmi carpenter shop', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mabusubhahan carpentry works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'A A PARTHASARATHI CARPENTER', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'padmanabha achary wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'lakshmi venkateshwara wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VIJAYA WOOD WORK AND ARC WELDING', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ganesh Furniture', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Venkateswara lorry body wood planeing works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sairam furniture works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SAI WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivasa Rao Carpentery Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sreenivasa wood carving and carpentry works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bala Wood and Carving Works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAIRAM COTTAGE INDUSTRIAL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VENKATESWARA FURNITURE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ramakrishna wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri Venkateswara wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'mudhusudhan wood work', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jamaluddin wood planning machine', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Rayalavarapu satyanarayana carpenter works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Chippada Achari Carpenter Works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Vijaya Durga wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'peragada Narsam Murti', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Khajapeer timber dipo', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GOUSE PEERA CARVING UNIT', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MUNIRATNAM ACHARI FARMING WOOD ITEMS', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'AUGUSTY WOOD WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri ananthalakshmi industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri satyasurya wood and furniture works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Malleswararao Wood Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sekhar achari furniture works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Godavari Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri sai venkateswara ayyappa wood works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GOUSE PEERA WOODEN FURNITURE', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivasa Furniture works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DURGA SAI DESIGN CUTTING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bangaramma carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Surya Furnitures', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAKSHMI WOOD PLAINING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mahammad rafi carpentary  workshop', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ANNAPURNA FURNITURE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'AAN FURNITURE WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'JESUS WOOD WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VARSHA WOOD WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veerabramendraswamy carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ANSAR BASHA WOOD PLANING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GANESH ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Babu wood work', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'siva wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinu Carpentry Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'classic interiors', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri venkateswara timber depo and trade works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Budumuri Satyam', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'brama Chari carpentry  unit', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI Durga furniture wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri anantha lakshmi saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sivakoti Srinu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RAJARAJESWARI FURNITURE', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SIDDHARTHA WOODEN WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri vijayadurga saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veeraguruvulu carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RIDDI SIDDHI DOORS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bharath furniture works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Uma maheswara Rao furniture works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Veera Brahmendra Swamy Planning Wood Works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'shree Raghuvanshi timber depot and sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RAJULAMMA CARPENTRY WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nagendra wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Raja Rajeswari computer wood designing works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'viswa brahmana timber dipo', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vijaya saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAI FURNITURE SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kanaka Durga Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kondababu carpentary machine', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sree veerabramhendra Swamy wood plaining works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VENKATESWARA FURNITURE SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinivasa carpenter works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GUNTAMUKKALA SRAVAN KUMAR WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MAJJI GOWRI FURNITURE SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Siva wooden works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bangaru suri babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MARUDU PUDI RAMANA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Anjali wood planning', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'pichuka raju', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sontana nookaraju', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SHIVA SANKAR WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'chinthala sathi babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Habsa carpenter workshop', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'gouse madhina timber dipo', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Sri Sri Poleramma Wood Carving Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Madheena furniture works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'karri ramana', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MS BALAIAH SEKHAR BODY BUILDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SAI RAM CARPENTRY SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Venkateswara Wood Work Products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Joshua wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'New Andhra Furniture and Wood Works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivas rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'medeti apparao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CARPENTER1 SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sree nidhi sathish furnitures', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'REYYE DHARMARAO CARPENTER WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Gantalamma Thalli Furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sandhyarani carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Pydithalamma Wood Works and furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri dhanalakshmi timber mart', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'someswarao wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'thooribhatla srinu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Blessy wooden furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Eswara Rao Wood work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'gangamamba carpenter shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LOVA RAJU WOOD WORK', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'star wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Lakshmi Narasimha welding and carpenter works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VENKATARATNAM WOODEN WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri viswarupa wood work', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'verabramendra Swamy furnitures', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'chittibabu saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Erupothu Vidysagar Saw Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mallikarjuna wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Munubarthi Narayana rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RADHA WOOD WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CARPENTERY SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nityanandam carpentry unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI RAJARAJESWARI CARPENTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Tirumala Agrotech', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinu wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinivasa wood works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ramana wooden furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Santhosh Carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VISWABRAHMINA CARPENTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CARPENTER SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sontana thathaji', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Annapurna Furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Geetha wood and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'avagadda ramana carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Pattabhammatalli Wood and Furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAI WOOD AND FURNITURE WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nanaji furniture manfacturing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VENKATESWARA WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'simhadri manikiyam', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAKSHMI SAI WOOD WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MOHAN DASU CARPENTER WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'P MOHAN  WOOD FURNITURE', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'pedha pati siva krishna', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MOBEENA FURNITURE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bhargav furniture shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sontana chitti babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'V D Hari', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Brahmam wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Manipuri Nandiswararao carpentery works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vamsi carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'furniture manufacturing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'lakkoju Nageswara rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vinayaka carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'soma raju wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kumari carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KNR WOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ajay carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'lakkoju thrimurthulu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veerachari saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BALLANKI SATYNNARAYANA WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Suresh Wood Carving', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sathi babu wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Seedari Relli', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nakkina pedha raju', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'R LAXMINARAYANA CARPENTER WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinu carpentry work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kasi someswara rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Ayyappa wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'AYAPPA SWAMI FURNITURE CARPENTARY UNIT', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SIMHACHALAM WOOD WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ramana Carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nagarju Carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAXAMANA RAO CARPENTER WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GANUGULA DHARMARAO WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAXMI SANKAR WOOD WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri ram carpentry shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'krishnarao furniture', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bhanu carpetry shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vanthala Guru', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bhimaraju carpenter works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'wooden furniture manufacturing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MAHENDRA WOOD SHAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BRAHAMAM P V C DOORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri raja rajeswari wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Chiranjeevi welding and fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinivas wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VEERABRAHMEDRA SWAMI CARPENTRY WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Addala Sankara Rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kasi srinu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'tirupati woof works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Thanmai computerised wood carving', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'venkataramana simhadri', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DURGA BHAVANI WOOD AND FURNITURE WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jalleda janakiram', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kothali srinu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Raj swamill industry', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Venkata Ramana Wood Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'simhadri Ganesh', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivas carpentry work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'koyyala yerukula naidu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Chukka Srinu Carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinu carpentry', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ramarao wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Suresh krishna carpenter workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Raju Carpenter shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Durga Bhavani wood works  Computer 3D', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VOMMI APPALASWAMY WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nakkina sambha siva', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vemavarapu Gangadhar carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'K G N TIMBER DEPOT', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bhaskar wooden furniture manufacturing', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vedhuruparthi subhosh carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jogarao Carpenter', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Gundumalla chandra rao carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'chittimoja Ramana Carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri kanakadurga saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vemavarapu Subramanyam carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mahalakshmi Saw Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Risi Apparao carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'simhadri achari', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Dimili Rajarao Carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'polumuri Nageswara rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DEVI PHOTO STUDIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Raju carpentery work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bandi Gurumurthy', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RAMYA SATYA WOOD WORKS AND SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'TIMBER DEPOT', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'chitralingeswara Swamy wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vedhuruparthi Ramakrishna carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'simhadri shankar', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bismillah chithrika wood and furniture works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kasi Chiranjeevi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kasi rama krishna', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Kanakamahalakshmi wood decorations and Engrevings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vedhuruparthi prasad carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Tagarampudi Sekhar carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'shaik nadelli basha', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Reddy and company', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vemavarapu Nageswararao carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sidheswari carpenter works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veeranjaneya carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kothala nanaji', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MANNI SURESH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SAMBASIVA WOOD WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kasi prasad', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Meghana Furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bramhendra Swami carpentry workshop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'polumuri thalachari', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vedhuruparthi Sekhar carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Krishna carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'royal furnitures', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vemavarapu Prasad carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI PARTHASARATHI PLYWOOD', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'konukipudi kanna babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vemavarapu Govinda carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'DIMILI SATHI BABU', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'chinthala narayana murthy', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Krishna Plywood Industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Gundumalla Sankara rao carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vemavarapu Achhibabu carpent work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sir veerabramendra computerized wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LANKA ESWARA RAO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri veerabhramendra carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'pedhapati balaji', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'DIMILI VARAHALU BABU', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAI KRISHNA TIMBER DEPOT AND FURNITURES', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Lakshmipathi Carpenter', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri gangammatalli timber depot', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Teki Ravanamma furniture shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KALA WOOD TURNING CENTER', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SANYASI RAO WOODEN FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VEERA BRAHMENDRA SWAMY WOOD WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri Rama Imax furniture works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GANGA DEVI FURNITURES', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'venkata Rao wood and carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Santosh carpenter shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Annapurna sawmill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI LAKSHMI SRAVYA COMPUTERISED WOOD DISIGNING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'PEDAPATI CHINNABHAIE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sirisha furnitures', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri kedaareswara furniture shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ADDALA ESWARA RAO WOODEN FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'furniture manufacturer shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Anantha Surya Timber and Furniture Works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAKKOJU BHRAHMAJI TYOS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ayyappa wooden furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vemavarapu Sekhar carpent worker', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'simhadri work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'veerabadra carpentry works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'uma neelakanteswara wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'durga furnitures', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Gayatri wooden doors industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SIVA FURNITURE SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SIVA DURGA WOOD WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ganesh wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vemavarapu China Ramana Carpenter work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri veerabrhmendra furniture shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SIMHADRI DURGAPRASAD WOODEN WORKSHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'mahamadiya wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'TALASULA SWAMI SANKAR SATEESH CARPENTRY WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vemavarapu Prasad Carpenter work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kalvari Wood Works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VENKATARAMANA WOOD WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Balaji Furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ch RAMBABU', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MS DURGABHAVANI DESIGN JOBS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'J K Wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VENKATESWARA PLAINNING AND WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'S MALLI REDDY WOOD PLAINING', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri veerabhramendhra carpentary works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'P VELAYUDHAM ACHARI WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Guru Ragavendhra traders', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinu Furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ganeswarrao Wood Works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mahaboob Subhahani wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BISMILLAH SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri kanakadurga saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MOHANA RAO WOODEN WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'daulathiya shamil wooden works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ganesh wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'oasis', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SHIVA SHANKAR WOOD DESIGN 3D CUTTING MACHINE', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Venkateswara furniture', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Devi furnatures', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Nookambika furniture work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI KUSUMAMABA COTTAGE INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri kamakshi carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'P BABU RAO CARPENTER WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VEERA BRAHMENDRA SWAMY TIMBER DEPO AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Veera bhadra wood designing', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri sneha furniture works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'K Radhamma', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Trimurthulu wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Aishwarya sai wood works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KULLYAPPA WOOD WORKS AND FURNITURES', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Carpenter', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAKSHMI STEEL AND FURNITURE', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri santhoshi matha saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri siridi sai furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Manikanta Carpenter work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Brahmendra wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri syamalamba timber depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinu plywood', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'smart wood carving and interior designs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BALAGAM SURESH', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri srinivasa saw mill and timber depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri Ayyapa Swamy Timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sai Durga furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Suresh Carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jagadeeshwari furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SHIVASAI WOODEN WORKSHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri lakshmi saw mill and timber depot', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri venkateshswara plaining  wood work', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Veera brahedra furniture shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VIJAY DURGA WOOD AND FURNITURE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'V RAJACHARI', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sreemadvirat pothuluri veerabrahmendra swamy', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Veera brahmendra chitri works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI CHENNAKESAVA WOOD WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri balaji timber depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KK MODULAR AND INTERIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'kattoji ramu carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Carpenter Shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'WOOD AND COMPOSITE WOOD PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri sai carpentery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bismillah traders', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'wood working', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'wood work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri manikanta work shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'santhoshimatha furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Laxmi Ganapathi Computerized wood Carving Work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'P Venkateswara Rao Timber and Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ratnam wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VIJAYA LAKSHMI FURNITURE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri bandimamba lakka bommalu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Irshad Furnitures', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BALAGAM NAGARAJU', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sara somu carpenter shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI KANAKA DURGA WOOD WORKS AND MACHINERY', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAXMI FURNITURE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Chand Basha Furniture', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VENKATA RAMANA SAMIL TIMBER DIPO', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri srinivasa sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri gowri wooden toys', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GLORY WOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DHANA LAKSHMI TIMBERS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'INDIRA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri sai furniture works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Carpenter Shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinuvasa Furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Devi Timber Depo', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Durga wood works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NARASINGA RAO FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RUBY WOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kamakshi Furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Balaji Timber depot', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri venkata sai wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivasa wood furniture works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Carpertor', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bhrahma chari furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'mahalaxmi carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Lakshmi Prasanna Wood and Furniture works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KALASRUSTI', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'lakshmi narasimha traders', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'IZAZ WOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Baba Fakrouddin Carpentry works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'janardhan wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRISRI MAHALAKSHMI FURNITURE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri vijayalakshmi ganapathi wood work', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRINU WOODEN FURNITURE MANUFACTURER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'madhusudhana wooden enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri sathaya narayana saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Ramakrishna Timber Depo and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sai Wood Works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri sai Venkateswara Traders', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sairam wood and welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sadiq Wood Works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI MALLI KHARJUNA WOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vikram Wood Works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KALIMATA CARPENTARY DESIGN WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vijaya Lakshmi Furnitures', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'HAMED WOOD WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'POTNURU ANANTHA RAO carpentry  genaral Engg works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'B L Carving', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'DADAVALI WOOD WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'tousif lathe works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'KNR Carvings and Furnitures', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VISWA BRAMHA', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BANDARU TARAKESWARA RAO WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MS SREENIVASA CARPENTRY WORK', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MANMADHARAO CARPENTARY WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'lakshmi ganapathi furniture shop', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Penchal Vamsi krishna wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BRANDIX APPAREL INDIA UNIT 3', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri srinivasa wooden  furniture works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Jagan Mohana Carpentary Works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'prakash creations', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI VINAYAKA FURNISHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRINIVASA VARMA WOODEN FURNITURE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI RAVI WOOD AND FURNITURES WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'mounika memontos and graphics', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MUNNA FURNITURES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI BALAJI WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'AMIGOS INTERIORS AND ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'P SHALI SAHEB SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Gayathri Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BHARATH TIMBER DEPO', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Gopi Krishna Saw mill and Timber depot', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri Rajeshwari wood works', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RK WOOD CARVING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'M H COMPUTERISER WOOD CARVING', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GOUSE BASHA MACHALA SHOP', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ramakrishna saw mill to', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri kanakadurga furnitures works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SHABBIR FURNITURE SHOP', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BHARAT SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kanaka Durga Traders', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'S L V FURNITURE WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'pullikonda saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sree Rama saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'vishwa brahmana carpenter works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 't bangarraju carpenter  shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri annapurna furniture works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Raju carpenter', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai carpenter work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suryaputra wood work', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gudipudi Furniture', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERABRAHMA GARU WOOD AND CARPENTER SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Swarnalatha furniture', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAKSHMI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SADA SIVA MODULAR INDUSTRIES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinu carpentry  works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'WOOD WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sathibabu furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri vasta  wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veera bramhendra wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baji Carpenter works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARIPAKA POLICE CARPENTRY SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri rajeswari steel furniture works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARIPAKA PRASAD CARPENTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kameshwararao wood work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Devoju Narasinga Rao wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUJATHA FURNITURES', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SNR SAW MILL AND TIMBER DEPOT', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAMBHASIVA STEEL AND WOODEN WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Munirathnam Achari workshop', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAJIT WOODFAB PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khaleel timber traders', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kanakarao furniture', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Domada Nageswar rao and Domada Srinu babu carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa wooden furniture workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khaleel Ahmad timber and furniture works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sree Baalaji Wood Works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KBH carpentry', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Durga Malleswara Furniture Works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI MANIKANTA TIMBER AND FURNITURE', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Wood works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Mastan wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHETTI VENKATA KRISHNA', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Furniture Works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GUPTAS ARTS AND CRAFTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MADHVIRAT CARPENTRY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI WOOD WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARLU CARPENTRING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Palteru Umamaheswararao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHAIK RAFIYA FIRDOUS FURNITURE WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Patnana Gowreeswar rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'annaji rao furniture  shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakausalya Wood Furniture Work', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri sai manufacturers', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ganubolu darmarao furniture shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA TIMBER  FURNITURE WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'kanakadurgamma carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mugada Gumpaswami', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PRIYANKA FURNITURES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOWRI FURNITURE', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tulasi Wood Works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateshwara saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'balaji doors and decors', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SHAIK MAGBUL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Chinnarao Carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI SUBHAM INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'tharakeswar rao furniture', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Livings', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'suprem  expand furnature', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga welding shop', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'jai matha wood Furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Viswakarma Furniture', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KRISHNA SAI ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sundarachari wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa furnitures', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI HARIKA CARPENTER AND WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raja Rajeswari wood work', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rayudu Wood Works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chinni furniture and wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'manikanta carepntary shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sunil wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G REDDY TIMBER REPORT', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ganga hari prasad wood and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri balaji wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shiva Sakthi Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ibrahim furniture shop', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'THOTAPOLAMMATALLI FURNITURE WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FURNITURE WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAMAKSHI FURNITURE GALAXY', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Majji Gowri furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SANKAR FURNITURES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lovachari wooden furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kanchikamkshi wood working', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Veerabrahmam Gari Furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanakadurga Wood Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'varshini furniture work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vishwakarma wood working', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'varalakshmi furniture work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'maharana balakrishna wood work', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai durga wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Chittibabu carpentry mechine', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Alugolu kondababu  carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GOVINDH WOOD WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Patnana Verrachari', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CARPENTARY  WORK', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai mahalakshmi furniture shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RATNAM FURNITURE SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mahesh Interiors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'venkateshwara wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tavitinaidu', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'narasingo carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venky brothers wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri vijaya durga furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PYDI TALLAMMA CARPENTAR WORK SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K MOULA FURNITURE', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raja Rajeswari Furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Rakesh wood work', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MASHA ALLA INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kamkshamma carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kanka mahalakshmi CNC works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SMR TURNING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI SANTHOSH CARPENTER WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramana wood shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGAJAYAPRAKASH MUNIKOTI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAPPY HOME FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PARVATHI CARPENTRY SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VEERABRAHMENDHRA SWAMI CARPENTARY SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'bhushana rao wood works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Varalakshmi wood work', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kv Narayana', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Danalakota Narasingarao Carpentry work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANAPATHI SAIDURGA WOOD WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'METRO FURNITURES WORLD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Technical Engineering Earth Movers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Domada Pedda nageswara rao Wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai classic studio photo frames and amp laminations', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SEETARAMA ANJANEYA FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Lakshmi Furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VARALAKSHMI MEGA SHOW ROOM', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga Bhavani furniture and wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri venkteswara furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shiva krishna Furniture Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'om sai furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'wooden and furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Maiaralingeswra Glass and plywood', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJA RAJESWARI MODERN WOOD FURNITURE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'wooden and furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Annapurnayya Furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'anandarao wood works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'raju furnitures', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'G M SUBRAMANYAM SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'durga rao furniture shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri veerabramendra swamy furniture  works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ELAHI ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SOMESWARA RAO', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shiva Shakthi Furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri polamamba manikyamamba works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nakka sanyasirao carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NOOR MOHAMMAD FURNITURES', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suribatla Wood Furniture Works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rama lakshmi wood works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'avupati rama krishna  furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI BHAGYAVATHI WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'venky wood work shop', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA SANKAR CARPENTER WORK SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ravi Teja Carpentry Workers Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vinayaka furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sri venkateshwara manufacturing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'YOGI FURNITURES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'nookambica carpenter workers mdo office road gandhinagar', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'wood based carpenter units', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'simhapuri furnitures', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SGB ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'M Manga raju carpenter shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL FURN', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Raghavendra Wood Furniture Works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Veera brahman furnishing', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri veerabhadra wood carving', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VANDANA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CH KOTAIAH WOOD FURNITURE SHOP', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAIDA wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dooars ply products private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'Sri hymavathi communications', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEWGEN FURNITURE', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kalagara carpenters', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SONIA ROYAL FURNITURE WORK SHOP', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shabhana welding and wood work', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara Carpentry works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ikon Interiors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'star studio', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Carpenter Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVENDRA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BASHEER SOFA WORKS WOOD WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sambasivarao carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'APPLE MODULAR INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHALOM SOFA WORKS AND FURNITURE', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SBJAN CARPENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani furniture industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Uma maheswara furniture works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Sai Furnitures', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SRINIVASA FURNITURE WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rathna carpentry works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patan Masthan bi carpentry works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UNIVERSAL DOORS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Uma maheswari Furniture', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara wood work', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAJA RAJESWARI CARPENTARY WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'swanky furnitures', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS ROYALDECOR', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Gagan Enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Suguna Glass House', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANANTHAPUR FURNITURE', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'carpentry work shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI STEEL INDUSTRIES AND TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SHAROON FURNITURES', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Habeed furniture Woodworks', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'parameswara ACHAIRY CARPENTER WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAIDEEP ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramaswamy Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bhishma resigns and panels', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Hanif carpenter work shop', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI GANESH SOFA WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'artisan colony', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'veerachari', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA TIMBERS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Punapalli Mallikarjunarao', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'koduru appalachari', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tamarapalli appalachari', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVSN Toys Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shanmukha Agarbathi Manufacturing Industry', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shafiulla carpenter works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Lakshmi Timber Depot', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUDHAKAR', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DILLESWARRAO CARPENTRY WORKSHED', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHANDE SUBRAMANYAM', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREENIVASULU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTA GANGAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUMARI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANNEPULA NAGARAJA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'POTHUGUNTA  NAGARAJU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Chandra Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MARRIPALLI TULASI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVENPALLI DURGA PRASAD', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUPPALA CHAMUNDHI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PEYINGE VENKATACHALAM', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANNEPOLA MUNISWAMY', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI NAGARAJU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALSETTY BALAKRISHNA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BODDUBOYUNA SUBBAMMA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHANGAL ACHARI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUPPALA SUNITHA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THIRUMALASETTY SUSEELA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narayanamurthy wleding mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MARRIPALLI TULASI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATHISH WOOD DESIGNING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA PANELS AND BOARDS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'DANDE SUMATHI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOTA LAKSHMI DEVI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KASTHURI SHIREESHA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVENPALLI LAKSHMI DEVI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'korimilli venkata ramana', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOTA PARANDAMAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'THALAPAGALA BHANU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTA LOKANADHAM', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVAIAH N', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI SIVASANKAR', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHESH N', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVAJI JALADANKI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BODDUBOYUNA MURALI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUPPALA CHINNAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VELURU PRAMEELA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BOMMU SUBRAMANYAM', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOLLATHURU RADHA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATHI LAKSHMI NARASAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PUTLA BRAMHENDRA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI NAGARAJU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ARCOT SARANYA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALISETTY LAKSHMI DEVI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KESAMSETTY UMAMAHESHWARI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PEDDAPATI RAMACHANDRAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAMMI GOVINDA SWAMY', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGALAKSHMI  V', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUPPALA SARASWATHI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mannepula jaya kiran', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PALIPU SUBRAMANYAM', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JALADANKI MAHESH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANI KOMMU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AKKABOTHULA DANAMMA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANIPAKU SUBBARAYUDU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVAIAH KOTA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTA MANI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagarajamma', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KESAMSETTY SUJATHA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI BALA SUBRAMANYAM', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOMMU PAVAN KUMAR', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PEDDAPATI RAJESHWARI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'THOTA NAGAMANI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUMARI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KESAMSETTY  VASANTHA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALISETTY PADMAVATHI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JOGINENI RAVI KUMAR', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PERAMBAKU SUBBARAO', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI VENKATAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REVATHI MARRI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI SRIKANTH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARKADU MURALI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SEKHAR SANTI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGIRIPATI KOTESWAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATTI CHANDRAIAH', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALISETTY RAJASEKHAR', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naga apparao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'nakkina chinaraju', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'apparao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raja rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Samba siva', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VELURU DHANALAKSHMI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna mohana achari', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raja', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'brahmajee', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'old wood merchant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'manikyam', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ZAHIRA SCHOOL EQUIPMENTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'ramakrishna', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Naga Raju Wood Works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANIPAKU SUBBARAYUDU', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'new vishaka frame works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAZEER SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'ARKADU HEMALATHA', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NATAKARANIDORASWAMI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Koppisetti carpentry works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sampath vinayaka furniture and wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sunita toys making', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARKADU KALAVATHI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI WOOD AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai vigneswara book sellers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Andhra picture frame works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'timber treat', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sai vigneswara wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'COASTEL WOOD INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vijaya fly wood', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anuradha furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vijaya carpentry works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'saidurga engineering work and article work', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'tharani industries', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'jane timbers and plywood', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI ANJANEYA WOOD CARMING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Nagarjuna Exports', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Bhargav wood work', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BM TIMBER WORK', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'shaik shareef wood work', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'shaik chinnasaida tember work', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mabu Subhane Enterprise', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'supersonic doors and interior products', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DURGA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'OM SHAKTHI WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'tharani industries', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sandeep chemical industry', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MD AYAN COMPUTER DOOR DESIGNING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SATYA WOOD INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Daada kalandar plywood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VIJAYA LAKSHMI TIMBER DEPOT', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Hexagon modular industries', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'hari om timbers   saw  mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Auto Tinkering and Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GOPAL WOOD WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'K Venkata ramana', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Vinayaka Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'PRAVEEN DIGITALS Studio', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SS PRINTERS AND PLOTTERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Riyaz Wood Carving Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'madeeha traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Om Durga Venkata sai Kala carvings', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'G K R Boards', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SAI HANUMAN FURNITURE WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Kamakshi Wood Carving Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Vijay Modulers', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sankar Vijay enterprise', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'balaga ramanamurty', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'm dharalakshmi', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAI FRAME FACTORY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'balaga simhachalam', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAKSHMI NARAYANA TIMBER DEPO AND SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sawmill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'balaga rambabu', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'balaga bujji', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'raju furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'carpentary shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri Saisiva furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'balaga govinda rao', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SOWJANYA WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NAGESH WOOD WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SR GUPTHA BRIQUETTES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sarat Etikoppaka Toys', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SAMOJI MANGAMMA WOOD WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRIMOHANABIOFUELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI HANUMAN ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'P Lakshmaiah wood planning', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Praveen Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Surya Ganapathi home needs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Kanaka Durga wooden Furniture works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VIGNESWARA INTERIER DECORS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'VIJAYAWADA DOORS AND PLYWOOD', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri surya bhavani furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'RK INDUSTRIALS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Salman Traders and Manufactures', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Swastik enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'bommala koluvu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Venkatanada  photo fiber lamination', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri gayatri timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'mouli slate works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DATTA BIO FUELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Patel Timber Deport', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Balaji Enamel Industry', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI SAI GANESH FURNITURE', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri satya sawmill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SPATIAL BUILDING PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MODALA  SRINIVASA RAO SLATE COMPANY', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GANESH WOOD DESIGNERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MSR CARROMS INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Shri swastik Tins Industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'BALAJI MSRM  LAAMINATES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ROCKWORTH SYSTEMS FURNITURE INDIA  PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRISIVASAIWOODWORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'OM SAI SAW MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jani sawmill', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gayatri saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRIRAMA SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri jai bhavani saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi prasanna timber depo and sawmill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Baba Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi Venkateswara saw mill  and timber depo', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri aditya venkateswara sai sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Vijaya Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'pnr timber tradera', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANNAPURNA SAW INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ratna saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhagya Lakshmi', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri deveswara saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri srinivasa wood cutting and sawmill furniture works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kanakadurga saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'subrhmanyeswara saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri Vijaya Lakshmi saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Reddy saw mill and timber depot', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIJAYA SHANKAR SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHAJABEGUM SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Swamy ayyappa saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vijay Laxmi timber and furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI DHANALAKSHMI SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V Apparao Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Siva Ganesh saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI GANGADHAR SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri wood works and sawmills', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI SANTHOSHI MATHA PLYWOOD AND HARDWARE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMASANKARA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veera brahmendra saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Srinivasa saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SR SRI NUKAMBIKA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkataramana saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHULAKSHMI SAW MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gousia Saw Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri krishna saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA SAWMILL', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA RAGHAVA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS ANANTHALAKSHMI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VINAYAKA SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'k Krishna murthy', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri veerabramendra saw mill and timber depot', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Srinivasa Saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri srinivasa timber depot', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA MARUTHI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SABHAPATHI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Jaya lakshmi saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAIBABA SAWMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri swamy datta sai saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi leela saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venga Prasanna timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sri suryachandra saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CH ammanna Sri venkateswara saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai lakshmi venkateswara ayappa saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai vijaya sri saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BALAJI SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa Sawmill Sri Lakshmi Srinivasa Timber Depot', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri satyanarayana saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bharathi Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Satyanarayan saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAJID SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri sadhana saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRISITARAMA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Raghavendra Saw Mill and Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Krishna Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAVASUGARI RAVI', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri ramya nagaratnam saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Venkata Ramana Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Bismillah saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ganapapathi saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI DURGA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkatarama saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sree Manjunatha Saw mills', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VINAYAKA WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BABA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M B S SAWMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramakrishna saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama wood industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga bhavani saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara saw mil', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venugopala swamy saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Kanaka Satyaveni Saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Gopala krishna saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Narayana Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'jayaram saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAGHAVA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'maru sukanya saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rayalaseema Saw Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI BABA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ibrahim sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai nadh saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CRESENT SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYANARAYANA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Islami Saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Venkateswara Timber Traders and Saw mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri vijaya padma saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sai nadh saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Krishna Timber depo And Swa Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHYAMALA SIVA PARVATHI SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'vijayalakshmi srinivasa saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Kanaka Durga sawmill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAILAKSHMI GANESH SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RAMA KRISHNA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI DURGA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri lakshmi Narasimha saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri aparna saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRISRINIVASASAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKA DURGA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri maha Lakshmi sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Venkateswara Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAGHAVA SAWMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'venkataramana saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kodanda rama anjaneya saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYANA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'anand rao carpentry works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai saw mill and timber depot', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'friends saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gayathri Saw Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'gayatri saw mill and timber depo', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Vijaya Kumar saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri durga sawmill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Rajendra Wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi satya sai saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri varalakshmi saw mill and Timber Depot', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R GANGACHARYULU', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'National saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Vani saw mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi venkateswara saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M PUSHAPAVATHI', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob subhani saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri srinivasa saw mill rampadu', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri Venkateswara saw mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'eswara sawmill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rangaraja saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'timber mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS SRI BALAJI SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'KANAKADURGA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chinna rao carpentry works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'mahabub subhani saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rao saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SVVSN SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara swami saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'bude and karimmastan saw mill and timber depot', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI KRIAHNA SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SIVA SANKAR SAW AND TIMBER DEPOT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOVINDAMMA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna saw mill cum timber depot', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri murali krishna saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'INDIRAMMA FLYASH BRICK PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dhanalakshmi saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Harsha saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata Lakshmi Narayana saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Prasad Carpentry and Saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri durga Srinivasa saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI BALAJI WOOD INDUSRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIJETHATIMBER DEPO AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Parameswari Saw Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya sai saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Anuradha saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Balaji Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SM TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Veerabhadra swamikk', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BHARAT SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijay Durga timber and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAMRAJYAM SAW   AND FURNITURE INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VINAYAKA SAW MILL AND TIMBER TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri veerabadra shamil', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AYYAPPA FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI veeranjaneya saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rehamath  saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkata Ramana Rice and Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sai Saw Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madeena Saw Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Bharath industries saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TATA ADHARAO SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KUMRA SWAMI SWAMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla Sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri kanchi Kamakshi Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Raghavendra Timber depot and sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI Srinivasa saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Varalakshmi Sawmill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Balaji Saw Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri seetharamanjaneya saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA SAI SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHA KRISHNA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri maruthi seetha rama saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswara Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'venkateswara saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanakadurga Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Makka Madina Saw Mill and timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI RADHAKRISHNA  WOOD WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganeshwara Saw Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'karimulla saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bandsaw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL CUM TIMBER DEPOT', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI durga prashanthi timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI venkateswara saw mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATA LAXMI NARAYANA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sai Venkateswara saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sankar timber and saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIVA SAI SAW MILL AND TIMBER DEPOT', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M V TIMBER AND SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vinayaka Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dhanalakshmi saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA DURGA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satyanarayan saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venakateswara Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI BABA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gowri Shankar saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI Polana vijaya ramayya timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AYYAPPA SWAMY SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S PATEL SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata bhaskara saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bharat timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Koganti Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Venkateswara Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAMBASIVA TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri shiridi sai firewood and timber suppliers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Desamma saw mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'new india saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'The kakinada saw mills', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri pydi Sai kanaka dhiryam saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENUS SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata padmavathi saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI GANESH SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BISMILLAH SAMYYEL SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MUBARAK SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Kanka Durga Saw Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Baji Baba John Syda Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ch seetha maha lakshmi saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswara saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MEERA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA JYOTHI SAW MILL AND TIMBER DEPOT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi Ganapathi saw mill and timber depo', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateshwara saw mill and timber dipo', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'sri Dhanalakshmi saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Srinivasa saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi narasimha saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jilani Traders', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI RAMAKRISHNA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Satyanarayana saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'manikyam timber and saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREESRINIVASA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MERY TIMBER DEPO AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SAWMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI DURGA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SATYANARAYANA SAW MILL AND TIMBER DEPO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HIMGIRI TEXTILE', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'madina wood works  and saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balaji saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PAVITRA SAW MILLA', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATA BRAMARAMBHIKA MALLIKARJUNA SWAMY SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKAMAHALAKSHMI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bismillah saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'DURGA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sesha sai timber and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna Bhanu Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS BALAJI WOOD PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SATYAMAMBA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Srinivasa saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SIRISHA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Siri timber and saw mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Anjaneya saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkata satyanarayana saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri srinivasa saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Durga saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI PAVANI SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri veera venkata saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Akkammathalli wood works and saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallikarjuna Sawmill and timber depo', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRINIVASA NAGENDRA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'venkata rama saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Manikanta Maheswari Saw Mill and Timber Depo', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri vijaya lakshmi timber depot and sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sivani Mini Sawmill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shanmuka lakshmi parvathi timber depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Hanuman Timber Depot and sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DURGA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Venkateswara saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hiranmai Associates  Saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Manikanta Sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri samba Siva saw mill and furniture works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Krishna Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri lakshmi Srinivasa timber and sawmill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K srinivasa rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATRAMANA SAW MILL AND TIMBER DEPO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RATNAM TIMBER TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KANAKA DURGA SAWMILL AND TIMBER DEPOT', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva durga sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Veera bhadra saw mill cum timber depo', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri srinivasa saw and timber dipo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMAVATHI SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SHAHINA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkataramana saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sreedhar saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI SAW  MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Patel saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAHABOOB SUBHANI SAW MILL OLD', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS ABBASIYA SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI SRINIVAS SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Naqsha Bandia Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mubarak saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHABOOB SUBHANI SAW MILL  NEW ALUR', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JILAANI VALI SAHEB SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jabbar Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Venkateswara saw and furniture', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW STAR SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'IDRUSIYA ALAM SAW MILL AND TIMBER DEPOT', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shabnam Sawmil', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADINA SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MADDILETY SWAMY SAW AND FLOUR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S SAW MILL AND TIMBER DEPOT', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri maheswara saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Narasimha Wood based industry cum depot', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Panduranga saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mali', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI SIVAJI SAW MILL AND TIMBER DEPOT', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DURGA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Raghu Vamsi Krishna Timbers', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Sai Wood Winner Sawmill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Srinivasa Saw Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka mahalakshmi enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI TIMBERS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri maaruthi timber and sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'shaik gani sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Mahalakshmi veneer industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRINIVASA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Gani Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVASIRI SAWMILL AND TIMBER DEPOT', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Hema Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri maaruthi veneer industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RAMA KRISHNA MECHANISED WOOD WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Devi saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dhana Lakshmi Sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SEETARAMA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREENIVASA SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAHMANIA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI SRINIVASA LAKSHMI DURGA SAW MILL CUM TIMBER DEPOT', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'anjaneya swa mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Milkar sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAVANI SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'DHAIRYA LAKSHMI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vudaya Kiran Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MADEENA GHOUSE E GAREEB PAK SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'THE WOODEN FURNITURE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri balaji Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi narasimha saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI   SATYANARAYANA   SAW    MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'srinarayana Swamy timber depot and sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA LAKSHMI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri bapuji carpentry industrial works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'The Goldsmith coperative Cottage Industrial society limited d1370', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'UPENDRA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI   KRISHNA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sankar Wood Moulding', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Chandrasekhar Swa Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri kanaka durga saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri ramanamma saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Satyanarayana', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA  VENKATA   SATYANARAYANA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANDHRA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'siddi vinayaka saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOWRI ESWARA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA MAHALAKSHMI SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'sri sitharama saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'srirama saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA DURGA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DEVI SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sami saw mill and timber depot', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VEERA VENKATA SATYANARAYANA TIMER DEPO', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NETHAJI TIMBER DEPOT', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'thandava krishna saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI UMA PARAMESWARA TIMBER DEPO', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI WOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAHMATH SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Sri Saw Mill And Furniture Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATASANTHI SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'P M R Sawmil', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaya lakshmi saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ayyappa sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saw milll', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri venkata Kanaka Durga saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Naga suneetga saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Mahaboob Subhani saw mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tara Tarani saw mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAXMI SANKAR SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Saw mill at kanupuru', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Annamaiah saw mill', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vigneswara Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kondala Rao saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata durga saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SSM Bio products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI KRISHNA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KUMARA SWAMI SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Siva Sai Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA VEERA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Timber Depo and Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venakateswara Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI KANAKAMAHA LAKSHMI SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BISMILLA saw mill traders', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mahaboob Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkateswara samill and timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI SAI SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATARAMANA SAWN MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Baba Timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya Krishna Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KANAKA DURGA AGRO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Parameswari Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Madeena wood designing', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivasa saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Srinivasa Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Mahammad Hussain sawmill', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA TIMBER DEPOT AND SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RADHAMADHAVA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Ratnam saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VEERABHADRASWAMY SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik Ismail Saw Mill and Timber Dipo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI maruthi Venkata Durga saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RVK ENERGY PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Saw Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Durga Ice parlour', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Srinivasa Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'TSN TIMBER HUB PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bala Raja Rajeswari Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivas a saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri Siva venkata satyanarayana saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'kanchi kamakshi saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI HANUMAN BAND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri swarna sapthagiri saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PARVATHI PARAMESWARA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'RAJASTHAN SAW MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bharati timber corporation', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Radhakrishna saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri srinuvas saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI NEW GANESH SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CHALLA PAWAN KUMAR SAWMILL AND TIMBER DEPOT', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri Duga saw mill and depot', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Star Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bis', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRIVENKATESWARA SAWMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bhagyalakshmi saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI rajarajeswari saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara SawMill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Seetaramanjaneya saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DADAPEER SAW MILLS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SEKHAR SAW MILL AND TIMBER DEPOT', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bharath saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Andhra Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAMBA SIVA SAW MILL AND TIMBER DEPOT', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAXMI TIMBER MART', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Chandra Sawmill and furniture Works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vasu Deva Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri udaya badhkar saw mill and furniture works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kasiviswanath saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jayalakshmi saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri tulasi mini saw mill and timber dipot', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'veeranjameya swa mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata  Rama  Satyanarayana saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI DURGA TIMBER DEPOT AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rajarajeswari Traders', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUNRISE TIMBER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara Saw Mill and depo', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA  WOOD TURNING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'N pullarao riksha karjana', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A VENKAT SWAMY wood planning', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURYA NARAYANA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUNITHA DEVI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'DURGA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kalki chittiri mission', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Suresh saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA KRISHNA SAW MILL AND TIMBER DEPOT', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswara Sawmill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanaka durga saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri padhamvathi saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'veera venkata raghavendra wood products', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Rayudu saw mill and wood works', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kanaka Babu Sawing and planing of wood', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata satyanarayana swamy saw and timber agency', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ch Ganga Raju saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SARKAR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI RASI SAW MILL AND TIMBER DEPO', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHINTAMANI FURNITURE CENTRE', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sakthi Timber Traders and Saw Mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'wood worker', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RP Traders', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Siva Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kasi Annapurna saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sree Sai Baba Saw Mill and Timber Depot', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PEDAGADA RAMARAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vengamambha Timber Depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RK S SRI CHAITANYA BHARATHI NOBEL TIMBER DEPOT AND WOOD SUPPLIERS', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATEL TIMBERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri vivekanandha timber depo', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI TIMBER DEPO', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chandra saw mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Madeena Sawmill syed Shakirulla', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SARADHA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'B KANNAN REDDY WOOD INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Devi saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GRACE WOOD WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya industries saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri vigneswara timber and plywoods', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MURUGAN WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Chandra saw mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Bharathi Sankar saw mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'durga carpenter works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gopala Krishna Timber Depot and Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI DURGA BHAVANI TIMBER TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'OM CNC WOOD CARVING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH TIMBER DEPO AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA RAMANA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'RAMAKRISHNA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Lakshmi Durga Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'DHANESWARI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHANDRA SEKHARA WOOD AND VENEERS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA LAKSHMI SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI NAGA VENKATESHWARA TIMBER AND GENERAL STORES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI ANJINEYASWAMY SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M GANGACHARYULU', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA PLYWOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri Ganesh Wood Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ajay Krishna Timber Depot and Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara sawmill and Timber depot', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vijaya sri lakshmi plywoods', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sai Kumar workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veerabrahmendra Saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rawoof and Brothers Saw Mils', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANNAPURNESWARI SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narasimha industry', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'shyed khaja Nayab rasool wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM SAKTHI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI KANAKAMAHALAKSHMI TIMBER TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri kotadurga saw mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Durga Vengamamba Sawmill and Timber Depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata rathna timber depot and saw mills', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'CARPENTERS WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VIJAYA SANKARA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maruthi carpenter works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri malleswari flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'RUNGTA HOLDING PVT LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Hanuman wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Saw Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya krishna timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'varahala babu wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri ramakrishna saw mills and depot', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sridevi Timber Depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Leela sai Timber Depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'mastana saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI TIMBERDEPO AND SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri lakshmi timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Kanchi Kamakshi Sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Shreejaa saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa wood', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI UMAMAHESWARA TIMBER DEPOT AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkata Sai Nikhil Saw Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Manikantha Swami', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vigneswara Sawmill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Lakshmi Saw Mill and Timber Dipo', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata Seetha rama saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA SRIVALLI SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANJANEYA SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Durga Saw Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri Lakshmi Narasimha Sawmill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMAJA SAW MILL AND TIMBER DEPOT', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bismi Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KOMMOJU PARVATEESAM WOOD WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata Ramana timber dipot and saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkataramakrishna timber depo and samill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri srinivasa saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Devi Saw Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sudheer Timber Dipot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '55']
[' Industry Name ', 'NARENDRA WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna Saw mill and furniture works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ramakrishna sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji saw mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'EVEREST PLY  VENEERS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '41']
[' Industry Name ', 'Sri manikanta saw Mill and timber depot', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CHOICE BOARDS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SOLID PLY PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '42']
[' Industry Name ', 'MADHAVARAO WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAYATHRI WOOD WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri  Lakshmi Venkateswara Timber work and furniture', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAMASHIVAYA SAW MILL AND TIMBER DEPTO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TIRUPATI VENEERS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '111']
[' Industry Name ', 'Nagarjuna Doors', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI GANAPATI SAMIL AND TIMBER DEPOT', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bismilla Timber Depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA SAI GANESH VINAYAKA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS Sree Lakshmi Chennakesava Timber Depot', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJARAJESWARI SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BILAL SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI RAJA RAJESWARI SAW MILL and DEPOT', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya Kiran Timber Depo and Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KHAJANAYAB RASOOL SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA SAW MILL BHINNALA', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Srinivasa saw mill and Dhruthi timber depot', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MUBARAK SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'mahalaxsmi timber depo', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI TIMBER MART', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri siva sai  sawmill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SrI SAI KRISHNA SAW AND TIMBER DEPO', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'aditya bio coal', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dada khalander saw mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARASIMHA TIMBER AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nageswara rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI BHARATH TIMBER TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJUBABU WOODEN AND FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subba Rao sawmill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RANGA SAI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHITTAMMA SAW MILL WOOD BASED INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'shaik abdul wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A V MOHAN SAWMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHAVI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai Nagendra Timber  Sawmill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bhavani swapna timber depot', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSMI SRINIVASA SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri  Sesharatnam Auto Mobile', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'chinthapalli devayani saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANANTHA NARAYANA SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Carpentry ICS Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GOPAL SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'wood cutting industry', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SPANDANA WOOD WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri seetharamanjaneya timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Saleha ageniecs', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GURUKRUPA PHOTO FRAMES AND LAMINATION WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAFI Sawmill', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA LAKSHMI SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padmasai timber and furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Durga Saw Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sree Balaji Saw Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Padmavathi Biomass Briquette Industry', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri rajarajeswari saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sai prakash saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Murugan saw mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri kanchi kamakshi carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'New Satish moulds', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'subramanya swamy timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivavsa saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MSB SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Subhani timber depot and saw', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri siva parvathi saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Siva shakthi saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI TULASI SAW MILL TIMBER WORLD', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA TIMBER DEPOT', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GANESH TIMBER DEPOT AND SAWMILL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mana photo frames', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'STAR SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRABHAT SAW MILL AND TIMBER DEPOT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI FATHIMBI SAWMIL AND TIMBER DEPOT', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri vera bramenda saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AMBEDKAR SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS MAHABOOB SUBHANI SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A H WOOD CARVING AND WOOD WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vishnu priya agencies', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T RAJULU COTTAGE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa timber depot and samil', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMACHANDRA SAW MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sadiq saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'svr charcoal', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Seasoning of wood in steam heated chamber', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'JAGANNADHAM WOOD WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siddivinayaka wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA TIMBER DEPOT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sujitha wood plaining works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANI WOOD PLAINING', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHAITANYA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bramhaiah timber', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Teja Wood Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bala raja kullayappa wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahesh wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Carpenter', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N and N associates', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'GOUSE WOOD PLAINING WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANATH CARPENTRY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Masha Allah', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vinayaka wood lining works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'balaji wood plaining works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vandana timber plaining works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Ganesh Wood work', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik Khader Basha', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ravindra workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'wood plaining Shop', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayachari Wood works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASMA WOOD WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara wood carving works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA WOOD PLANNING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri dhana lakshmi timberdipo', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ameerjan wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V VIswanatha achari work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji Wood carving works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BD plywoods', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nazeer Ahammad', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sankudevatha carpentary', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venga sai krishna timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Janaki wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abidh Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'carpenter shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sohit Furnitures', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri Srinivasa chitrika machine', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thavitiraju carpentry shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri manikanta carpenter shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI DESIGNING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABHI WOODEN WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B MD ALIKHAN WOOD PLAINING MUDIVEDU', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K SHAMEER BASHA WOOD PLINING MACHINE MUDIVEDU', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'laxmi wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani wood works shed', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADEENA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sowjanya slate works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'The best furniture works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sai Teja Enamel Slate Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri shivashakthi slate works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya Mitra Doors and Windows', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B BASHEER AHMED WOOD PLAINING', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nookambika woodworks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'woxsen', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SESHU CARPENTRY UNIT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'arpita modular interiors', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kolimi agganna', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi CNC Door Designing works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veeranarayana timber', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak wood based industry', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai industry', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VEERA BRAMHENDRA SWAMY WOOD PLAINING WORK', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lalitha Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jai technologies machinery manufacturing', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'shahina wood works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka lathe works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai ram wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lahari krishna traders cum furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mabusubani wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYAM ACHARI timber dipo', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Gouse Basha wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Babajan', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Umashankar Wood Plining works', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'PBL TRANSPORT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI MAJJI GOWRI WELDING AND WOOD WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiridi sai baba wood works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Krupa Slate Works', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana Furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SLNS WOOD WORK AND WELDING', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GOUSIYA WOOD PLANNING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAVIKUMAR CARPENTER WORK', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'symala saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gonuguntla shehabramam veera chari', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA SAI KRISHNA TIMBER DIPOT', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A NAGESWARA RAO', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'amrutha sai wood works and furniture', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Narsinghmurthy Wooden and Furniture Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GOPI KRISHNA SAW MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkaswara yuvaraj timber dipo', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJASAW MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M RAMU AND SONS SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA SAI SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Somsekharachari', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Guru Nanak saw mill and timber depot', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kesava saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri guru wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tolem akkayya', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maa tarani  timber depot', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri veerabramhendra wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'nellipudi laxmi wood works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k manga', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ganta rajulu cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vidya timber depot and saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SATYAM FOOT WARE', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sir Vinayaka Timber and tiles pichatur', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Veera brahmendra Swamy wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Venkateswara engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri vamsi krishna saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SATYA SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI MANIKANTA CARPENTER WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KALYANI SAW MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MUKKAMALA TIMBER TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI CNC WOOD CARVING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mastan Saw Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'padilam nageswararao cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara shaameel K Veerachari', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'shaik shajahan baba  cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'barla sambasiva cottage industty', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Naram rajababu cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naram nookayya cottage industr', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dada wooden furnitures', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIRAJARAJESWARI WOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Velugula subbarao cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N musli cottage industrt', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khan Timber Dipo', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'P Apparao cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K nageswararao cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna saw mill cum timber depot', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'korimilli narayanamurthy cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sampangi thatarao cottage indistry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VAJRA LAMINATIONS  AND MOMENTOUS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thangenti venkateswararao cottage industries', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Lacharao cottage industries', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'challapalli mahalaxmi cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vadaboyana Devudu Cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kaparapu rajulu', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srisrinivasasaw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOHAN SAW MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIVA SAI COUNTRY WOOD DEPOT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'tolem satyanarayana cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri seetha Rama saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI MANASA TIMBER DEPO AND SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMED MADEENA WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tirumala Venkataramana saw mill and timber depot', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Hill Brooms Making unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Wood Wool Manufacturig', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri Veerabrahmendra Wooden Cards', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Wood Wool Manufacturig', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Polamamba Wood work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Wood Wool Manufacturig', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOKSHA BIO ENERGY PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Wood Wool Manufacturig', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ganapathi Hot Chips', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POTATO CHIPS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'selvi food products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POTATO CHIPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri ravi chandra chick shed', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M venkat reddy poultry farm', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi sai durga broiler poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI POULTRY FORM', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PULLA RAO POULTRY FARM', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya Durga Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'suryanarayana poultry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'adilakshmi poultry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kenna desi poultry farms', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'satyanarayana poultry form', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhulekhamma poultry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'D bhaskar reddy late vengareddy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA SATYA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'M POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Vijetha Poultry Farm', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VICTORY POULTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'KVRS Foultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bejawada narayana rao poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIGNESWARA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Rama krishna reddy poultry form', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MudduKrishna Poultry farms', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BAPANAPALLI VENKATA APPAIAH', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA REDDY POULTRY FARMS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI DURGA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sp farms', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI MANIKANTA POULTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara poultry center', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri lalitha poultry form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sahasra poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'DEVISETTI POULTRY FARM', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE VIJAYA SARADHI POULTRY BREEDERS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYALAKSHMI POULTRY FARMS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai ram poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MALLINA GOVARDHINI POULTRY FARMS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VATTURI SURIBABU POULTRY FARM', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai durga poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri padmavathi poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NARISE POLARAO POULTRY FIRM', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lalitha Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sree Gowriputra Agra Products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'kommina Srinivasa Rao', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna poultry farms', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'prasana anjaenya poultry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANA POULTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi ganga poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata lakshmi Ganapathi poultry form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bala Bhairavi poultry farms', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gana Sai Subrahmanya Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'bhadradi rama  farms Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'sri sairatnam poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Balaji Poultry farm', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJAHMUNDRY HATCHERIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'bala balaji srinivasa poultry farms', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Bhavani Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SIRI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PM ASWINI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATA RAMA LAKSHMI POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI PAVAN POULTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Harsha poultry hatcheries and feed mixing plants', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Burgupalli Kasiviswanadham polutries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Soujanya Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Dhana Lakshmi Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Padma poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAIDULU BOILER FORM', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI STOCK', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'poultry5', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'asha poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shinryo poultry form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'ramarao poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'RSV Exam pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANJAPPA POULTRY FORM', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Budigamma', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopala Swamy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatesawra poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Renuka poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJESWARI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOPALARAO POULTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B B RAO Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE DURGA PRATHIMA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HANUMANT POULTRY FORM', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Poorna Chandra Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'suguna poultry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sudhakar poultry farm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kolla forum', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M Jogiraju poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Alavala Sitaram Reddy poultry form', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'poultry farming 3', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'mohini ratna kumari ratna kumari poultry farm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Poultry farming', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'satya poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'poultry farm 4', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Attunuri Nageswara Reddy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K Babu Reddy Poultry Farm', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Poultry Form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI GOURIPUTRA AGRO PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI RAMA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'Srinivasa Poultry Products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CP poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dastagiriswami polutry', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shariffdin kolla forum', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAMEEDHU POLUTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Mohana poltary farm', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI POULTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'A Gangulamma', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'samatha brailors', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aruna Poultry farm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R K Poultries leased to Narayana poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara  Poultry Form', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara  Poultry Form', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Guru Krupa Poultry Form', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'RAKESH POULTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Padma Priya Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Hyderabad Hatchery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA DURGA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOMMAREDDY GREEN LANDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Poultry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMESH PHOULTRY FARMS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Sri Durga poultry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD POULTRY FORM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKSHMI HATCHERIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vijaya Lakshmi poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAGA DURGA FOULTRY FARM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijay poultry firm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'poultry farming', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'poultry farming', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BHASKARA POULTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATARAMA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VANADRI NAIDU POULTRY FORM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'I SIVA SANKARAM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ambika Poultry Farm', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Venkatesulu', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mandava Poultry Farms', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GBR Chicken center', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalakshmi Boiler Farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vaibhava lakshmi enterprises pvtltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'B Ravi', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kasi gari poultries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DHATRIVENKATESWARA POULTRY FORMS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K SRINIVAS REDDY poultry farm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PADMARAJA POULTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p seshadri naidu poultry farms', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ASR poultry', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vennela Poultries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYANAGAR HATCHERIES PVT LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'jyothi poultry farms', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Madhav poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'POORNA KUMARI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara natu kollaparam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkatalakshmi poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANAS POULTRY FEED MIXING', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rag poultry farm', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'STANDARD BUSINESS SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'RAMADEVI POULTRY FARM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G K POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bismilla Auto Electrical Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI BALAJI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'VENKATESWARA BROILER POULTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'poultry feed mixing', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMBATI TRUMURTHULU', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata durga Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri PADMAVATHI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA POULTRY FEEDS AND FARM', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara poultry form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'sree vigneswara poultry form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'Kanaka Durga foods private limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Hari Priya Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SURYA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHALAKSHMI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANALAKSHMI POULTRY FORM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANTA SATYANARAYANA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sathibabu poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Dhaneswari Poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'AOBULAPPA POULTRY FORM', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ranga reddy poultry form', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA POULTRY FARM', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Gogineni Siva rama krishna', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mohan balaji poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Sai poultry complex', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Rohini poultry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Sarada Hatcheries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SRI SATYA POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai balaji poultries private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramachandraiah', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'PAVAN POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DKR Poultry Farms', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Reshma Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNA POULTRY FARM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS Poultry Farm', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SLNS Poultry farm', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RAGHUNATHA POULTRY FEED MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AJ associates', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MODEENA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vinayaka feed mixing Plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIRI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya Poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAMEER POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RKR poultry form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MVenkatapparao Poultry form', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI POULTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri sai Venkateswara poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Nagalaxmi Floor mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Venkateswara poultry farm', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rishitha Poultry farm', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K VENKATA REDDY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DVM AND CO', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMABADRA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI ANNAPURNA POULTRY FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHAROEN POKPHAND SEEDS INDIA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '142']
[' Industry Name ', 'Ravindra Chicken form', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI UMA RAMALINGESWARA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ROYAL RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Gurrappa Swamy Poultry Farm', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI VIJAYA LAKSHMI POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'myneni feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AQUA N POULTRY REMEDIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'DURGA BHAVANI POLUTARY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NSR BOILERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MAS AQUA TECHNIKS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI HATCHARIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'POTHURAJU', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara hatcheries private limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VAIBHAV POULTRY FARM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KumarReddy poultry form', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRIVET HATCHERIES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'TORLIKONDA PADMA KUMARI', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SUVERA HATCHERIES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAGAJYOTHI FEED MIXING FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RAYUDU SWEET SHOP', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAJYALAKSHMI DALL AND RICE PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Nisha Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAMNAN AGRO AND HARIKA SEA FOODS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'shark frozen food', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri siva sai ice home', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAKESH TRADING CO', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NBK SUPPLIERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kishore kumar chekodees factory', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI HANUMAN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narasimha cold storage pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI NANDANA ICE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Venkatapadmavathi modern rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'smihadri agri development cold storage cum ripening unit', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Preservation of food', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANANDA ENTERPRISES PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI CHINMAY CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'R Srinivasa Rao ripening chamber', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R Srinivasa Rao', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa cold storage', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S R cold storage', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anjaneyasarma repening chamber', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Taj ripening chamber', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mahalakshmi fruit repening', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KMS APPLES ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gupta enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DURGA FRUITS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUPERMARKET GROCERY SUPPLIES PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MARUTHI FRUIT CANNING INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SK MUSTAK FRUIT COMPANY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING AND PRESERVATION OF FRUITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kanakamahalakshmi oil and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vijalakshmi Oil and Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PARAMESWARI TURMERIC MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sai nava jyothi enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramsubbareddy Pindi machine centre', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'YSR SPICES INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kusumanchi gundraju flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CINAGRO FOODS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Veranjaneya Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Raja flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vuyyuri Tulasi Padmavathi Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHANALAKSHMI CASHEW PROCESSING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BHAVAGNA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkateswara  flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYALAKSHMI HOME PRODUCTS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHANVATHRI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'parisuddha jalam', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sun purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raghavendra water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pavani Ice Plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI VINAYAKA WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Himaja Waterplant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'kiran mineral water and DM water', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mahalakshmi Water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ZAM ZAM WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PROCESSING OF WATER BY RO PROCESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'komalitalli pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHANUMJAYA PINDI FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'old sri venkateswara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVAS RICE AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'opVenkata prasannajineya rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MALLIKARJUNA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI ANNAPURNA RICE AND FLORE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mubharak rice mil', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVIVARMA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Production of Steam Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rupesh industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMITIRUPATAMMA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'P Nagamuni', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M Jayaramreddy Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi venkata satyadeva rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhanodaya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya venkata sri satya sri durga', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MAHESWARI BORUGULU MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venugopala krishna modern rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi venugopala modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA PUFFED MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara grainding mills', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ambikanadh boiled rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHANMUKHA DALL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara traders', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA VARAHALU TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAKASH DAL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'German Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri seetharama Anjuneya Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri siva sai floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VNR TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHESWARI DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Baba Mills', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJA RAJESWARI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri krishna  industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Jeevan Enterprises', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'durga oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHADARVALLI INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prakash Exports', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI RAJARAJESWARI TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balaji Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJA RAJESWARI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJA RAJESWARI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venugopala swamy Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mallikharjuna Dall Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Durga bhavani floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karimi suneetha floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA MANIKANTA DALL MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venugopala Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sanjeevaraya  Dall Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HIMANI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vayuputhra water purifier plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Alham dulillah Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narasimha Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nayagara water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vengamamba waterplant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Limra Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL AQUA', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Arogya Mineral Water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jahara bee water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Steve ganga water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal Aqua Pure Drinking Water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balaji water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Patti venkateswara Reddy mineral water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nizam water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Basha water treatment plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmidevi water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Basha water Treatment plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Devi water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Manikanta purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI  CHENNAKESAVA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Konda water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tulasi mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla miniral water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ashok', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAHARI FILTER WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Nandini Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASHWINI PRIYA PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI MINERAL WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SLV WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Thulasi mineral water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAFIQ WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PVILLURU RO PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Upendra water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'siva sai mineral water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARUN PACKAGED DRINKING WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Himalaya purified drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASAVI WELFARE ASSOCIATION WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GIRI PRASAD WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sujalam', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RANIGARAM SUMATHIBAI', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SUVARNA FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P V SIVA REDDY PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KGN water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SLV water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Murali Krishna foundation MK water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'supraja RO water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gangotri traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Balaji purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara mineral water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAHNAVI PIRIFIRED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sonu water plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siyonu Water Plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI PRIYA HEALTH CARE PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NTR Drinking Water', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi tirupathamba flavoured water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jwalamukhi Drinking water', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HIMALAYA WATER PURIFIER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Surya purified Drinking water', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mithun purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA PURIFIED DRINKING WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P R R Mineral Water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA OIL AND GENERAL MARCHANTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Refined Edible Oil and Crude Rice Bran Oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai Agro Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Refined Edible Oil and Crude Rice Bran Oil', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '39']
[' Industry Name ', 'SURENDRA SOLVENT OILS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Refined Edible Oil and Crude Rice Bran Oil', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '28']
[' Industry Name ', 'Meher Oil Industries Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Refined Edible Oil and Crude Rice Bran Oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'GEMINI OILS ND FATS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '80']
[' Industry Name ', 'B Padhanabhaiya flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', '3F INDUSTRIES LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '334']
[' Industry Name ', 'VINAYAKA OIL ROTARY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice flour oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kota veeraiah  trades', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAYURA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REFINED OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'HARICHANDANA AGRO-TECH LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Refined Rice Bran Oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '33']
[' Industry Name ', 'VIJAY AGRO PRODUCTS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Refined Rice Bran Oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '69']
[' Industry Name ', 'sri vijaya lakshmi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REPACKING OF PALM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Narasimha Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REPACKING OF PALM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BASIVI REDDY KARAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'REPACKNG OF EDIBLE OILS AND SPICES POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veerendra Oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Research and Manufacturing of Cooking oil Spray', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA DECORTICATOR', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Research and Manufacturing of Cooking oil Spray', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srijayalakshmivenkatasatyanarayanaricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri naga annapurna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M G Kumareshan', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'laxmi srinivas industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata sai lakshmi rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA DHANA LAXMI RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'jyothi narasimha swami rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE FLAKES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narayana Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramalingeswari Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA RICE and FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DASU Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAXMI TIRUPATHAMMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gopi modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI GANAPATHI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ramasesu modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vigneswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lanka Chittamma Rice and Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chinthapalli devayani flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MSSRI BALAJI MODERN RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sitaramaiahRice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V B BHARARAJU RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MODERN RICE AND GROUND NUT OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMIGANAPATHI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYALAXMI RICE  FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Pratima Modern Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANGAMAMBHA FLOOR AND RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'THADDI RAMUNAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijayalakshmi Rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri balaji rubber roll paddy processing unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAVA DURGA FLOUR AND RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Ramakrishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkata ramalinga rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA SATYANARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Venkateshwara Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srivenkateswararicemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VEERAIAH PARABOILED RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRIRAMA RICE AND', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Veera Veenkata Satyanarayana Flour and Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KESAVA AND SONS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'M S M H L RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prabhu krupa rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KINTHADA LAKSHMI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWAR RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S RAO RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA RICE    MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Somasundaram Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Manikanta rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTAKALA RAMU', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJA RAJESWARI RICE FLOOR', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA RAJU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHITIKELA MUTYALA NAIDU', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri ramanjaneya rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Reddi Satyavathi Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VINAYAKA MODERN RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA RICE MILL 1', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI PYDITHALLAMMAVARI TEMPLE RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'THIRUPATHI RAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI LAXMI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata Rama rice and floor', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ramalaxmi Ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SRINIVASA RICE TRADERS CARE OF SRI SAI BABA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri venkateshwara mini rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOPALA KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R suryanarayana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohammed afzal rice and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PUTTA BHEEMANNAMMA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Rajasekhar modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vigneswara Floor Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJARAJESWARI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GUDEPU RAMANA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata siva rice flour and mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh Modern Rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara Rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lokeswari Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Sai Rice floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Golden Aqua Farms and Exporters private Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rajyalaxmi Rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GANGA SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Sita rama rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANJANEYULU RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri anjaneya rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa rice flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri jayasri Rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI LALITHA GAYATHRI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateshwara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANJANEYA AGRO INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Annapurna Minni flour ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SANTHOSHI LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Govindha Tulasi rao rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VILLURI VENKATA SATYANARAYANA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswara rice and Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GANESH RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'UMANAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi modern Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'NAIDU MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Uma Maheswara Rao Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI JAYA KRISHNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SIVA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri tirumala venkata srinivasa ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dhanalakshmi Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Satyanarayana swamy rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateshwara Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kishore Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Lakshmi Narasimha Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gowsia Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Seethalaxmi Ramamurthy rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G CHS APPADU MINI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gayathri modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI SAI LAKSHMI NEW RAW AND BOILED RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sriveeravenkata surya Narayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sidivigneswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri vigneswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri srinivasa rice and floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Suneetha Flour and Dal Oil Packing Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Vaniparaboiled Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkata ramana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri prasana anjaneya rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI MOUNICA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NARASIMHA SWAMI MODERN RICE AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VEERANJANEYA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KURAPATI RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi narayana Flour and Oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK MS KARIMILLA', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'srivenkata sai modern raw and boiled rice mill vatluru', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'chede lakshmi', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VAISHNAVI RICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ganesh Sai lakshmi modern rice null 3', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri ramanjuneya rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri manikya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GANESH TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHARANI FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Srinivasa Rice Flour and Decorticated Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA BHASKARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI JAIHIND RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Parmeshwari Rice and Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI CHENNA KESAVA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Andhra Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaya Laxmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kanaka durga rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Venu Gopal rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nagarjuna Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYAKRISHNA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'gopalakrishna rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna rice floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkata Srinivasa Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri  Lakshmi Satyanarana Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA PADMAVATHI RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SUBRAHMANYESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'indira ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srirama rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri kanakadurga rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'jamaana seetharamulu Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY MODREN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmivenkata maruthi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI VENKATESWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'NAVEENA RICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Mani sankar rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'seetaramanjaneya rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri shridi sai rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SriSitharama Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi narasimha swamy rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raghavendra Rao Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DHANALAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'gemmeli keshava rao rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANAKA DHANYA LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUTYALA VEERABADHRA RAO Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'APPARAO RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nilla Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI RAMA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SATYANARAYANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA RICE  and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa rice and floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree lahari krishna Rice mill bonguda', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pothuraju rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga raju rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri janakidevi rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Satyanarayana Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA OIL AND FLOOR MINI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA SWAMI RICE AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Konada Venkata Rao Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri ram ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yesu Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'annapoorna flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI NOOKAMBIKA FLOOR RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durgalamma Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri saraswathi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA RICE DHALL AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BASKARAO RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KONERU PADMANABHAPRASAD RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Samba Siva Rice And Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'madhu flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Kanakaratna rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chanti rice and store mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dhanalakshmi floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARAYANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SUMANTH RICE AND BIOTECHNOLOGIES PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '23']
[' Industry Name ', 'dasari venkunaidu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAMAKRISHNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Murali RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai sree rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sinderi mangudu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'panchada Ramaswamy rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bethal Rice and Floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'seenderi srinu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopala Krishna Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri kanka Durga rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Durgammathalli Rice Mill Mamidipalli', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B gopal rao', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ram lakshmi venkateswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VANTHALA NOOKARAJU', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'korra rambabu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YENDANNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagendra Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'korra satti babu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A kanthaiah Rice and floor mill                      Sri Venkateswara Rice and Floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SITARAMANJANEYA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jarubula amaraiah rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DASARADHA RAMALAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajendra Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sanapathi laxmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara flour and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bismillah Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Radha Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SITARAMA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anitha Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vinayaka rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Skm rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi srinivasa traders', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'baba rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chinnayya Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Rice Company', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK KANNAMMA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'killo kamaraju rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganapathi Floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'korra rambabu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Vinayaka sai rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMA KRISHNA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Varalaxmi modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'lakshamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHUSADHAN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MK rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Tirupatamma Rice and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHOOLOKAMATA RICEMILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Atchamamba rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SRINIVASA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vanthala bimanna rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EERANNA SWAMY RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Sathi aranjyothi raw and boiled rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri sai baba modren rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Venkateswara Hygienic Foods Pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Jogi Naidu Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gopi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Siva Shankara Rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri nrusimha swamy rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kedareswara rice mil', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyanararayana rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gowthami Suresh Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Chandrasekhar rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkata siva durga rice  mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramulamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Parameswara Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'killo bheemanna rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A Narayana rice and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI SRUJANA TRADERS CONT EPURU SUBBARAO ROCE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI TRADERS CARE OF SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMAKRISHNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Modhamamba Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Maridi Devata Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYANARAYANA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ganesh rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA SATYALAKSHMI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'hanuman modern rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V R FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman rice mill and floour', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa rice floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gangabhavani  rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA LAKSHMI RICE  FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRIKRISHNARICE FLOURMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lekkala Venkatrao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI JAYAKRISHNA MILLS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri devi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa rice and flour', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Navabharat hi Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Rajeswari pindi milli', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aparna mini rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramachandra rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinadhu Jaggannadharao Rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI KANAKA DURGA  RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Venkatarama Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Srinivasa Rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shiridisai rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yeswanth rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara satyanarayana rise and flere mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ramakrishna rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Lakshmi Modern Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ramakrishna rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Swamy Rice Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri SAIRAM Rise Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Manikanta rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANA RICE MILL- SAI RAM TRADING COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Narsu Naidu Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRI OORAMMATALLI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATHYA RAMA INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramalingeswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASI ANNAPOORNA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Nageswarao Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkataramana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Reddy Krishnamurthy and others contract Jayalakshmi Panduranga Ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Laxmi pindi milli', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIVIGNESWARARICEFLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jayalakshmi rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri ganesh rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai baba Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Illahia rice and Flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Srinivasa Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYA PRASAD RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI NIRMALA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASI ANNAPURNA MODERN RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'THIRUMALA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ch venkaiah', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANDHRA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri satya saw mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri vinayaka rice and flowr mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Radha Krishna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veera Raghava Venkateswara Modern Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS TIRUMALA RICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'jinna kollappa', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANALAKSHMI RICE FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BABA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Subramanya traders', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEETHARAMANJANEYA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETHA RAMA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAMBASIVA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'maruthi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkatasatyanarayana floor and Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREE KRISHNA RICE MILL NO3', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SATHYALAKSHMI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C AMMANNI RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'g Mallikarjuna rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Basha saheb rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama dhana lakshmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SUBRAMANESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri parameswari flour and rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Muniraja Reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMANA NAGENDRA RAW AND BOILED RIC EMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Subbarayudu  ricemill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai ram rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Swamy Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA VASAVI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE AND DALL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYALAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sitaramanjaneya rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'radha krishana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THIRUMALA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI VIGNESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Prasannanjaneya Rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE FLOOR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AMMULA SAIJYOTHI TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Raja Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VARALAKSHMI RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Daralamma Rice Mill kothapalem', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHENDRANADH RICE TRADING COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'NAVEENA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Sai rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOPALAKRISHNA RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raghavendra Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYA NARAYANA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai Ganesh rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Durga bavani rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'devi samba siva rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sharmasvali rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA FLOUR  RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SAI TRADERS 2', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VARAHALAKSHMI NARASIMHA SWAMY MODERN RICE AND GN OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jannela nukalu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PARDHASARADHI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Rama Krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'Lakshmi Modern Ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rameswara modern ricemill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kalivarapu thirupathi Rao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'priyadarsiniminiricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Valli Lakshmi Venkata Satyanaraya Rice and Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y NARASIMHARAO RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B SARMA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'vijayalakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARITHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PVR RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gopal Krishna Modern Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sathyanaraya Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateshwara Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata ramana rice  flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi narasimha rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Y Narasimha Swami', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Murthy Modern Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI SUREKA GENERAL MERCHANTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vankata Kalyani Raw  Boiled Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAMSEE TEJA MODERN RICE MILL PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'sri Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suveera Traders Contractors of Suveera Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SIVA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Janatha rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Radha Krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramakrishna rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Srinivasa Modern Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE SATYA SREENIVASA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri jaya rama rice flour and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Satyanarayan rice and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VANI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nalla tirupati rao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA VIJAYA LAXMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara mini modern rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veenus Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri satyanarayana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATRAMA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'POOJA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A SATYANARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA TEJA CORPORATION', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI KASTURI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SURNARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri dhanalakshmk rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREE VEERA KRISHNA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Raja Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'n appalaswami rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Samba Siva rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYASREE FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'SRI ANNAPURNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri Dhana lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHAKRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Virat Sree Visweswara Treders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHALAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI JAGANNADHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bala Krishna rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri  anjaneya rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sankaraiah rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAVINDRA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kalyanarama Rice and Floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'srikameswari rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Sai Ayyapa Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'TAJ  RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Murali Krishna Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYALAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Padmavathamma grinding', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NC TRADERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mallikarjuna Rice Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Narasimha Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai Sri Rice Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SRI MOHANA KRISHNA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hanuman ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KANCHANAGANGA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Sri balaji rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'nireekshana rice  floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi Vasavi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vijaya naga Jyothi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI SURYA MURALI BABY RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA LAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Lakshmi Bharathi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Meenakshi industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Kanyaka Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rahamathulla rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi rama ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAMANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G Sanna Obanna Ricemill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandrika Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Srinivasa rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'VIJAYA NARASIMHA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NAGESWARARAO RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHVARA RICE AND FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Baba Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri VIJAYA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagoor Khadarvali Rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA KRISHNA RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sesha ratnam rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri tirumala moderen rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Sri venkateswara Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shanmukha sai krishna rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA LAKSHMI AGRI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri sai krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi Balaji  Rice Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'vijaya Durga rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYADEV RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA DURGA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Manya Maheswari rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Chamundeswari rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri vengamamba rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sivasai modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Venkata Lakshmi Narasimha Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI VENKATESWARA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SRI VENKATESWARA  RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BALAJI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VPN RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'adhitya modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVAS RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sivashankar rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA AGRI PRODUCTS INDIA PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Venkata Sai Durga traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA RAW  BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maha lakshmi trading company', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Sri Raja Rajeswari Rice Industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhanalakshmi Rice and Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MARUTHI SOMESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A A Narayana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RAW  BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice mill perapuram', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Hari Priya traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Suvarna Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Chandravathi Rice and flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'OMKAR TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA MODERN RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara Rice andflour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI P V N RAW BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI VENKATAKANAKA DURGA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHRIDI SAI RAMA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Jayalakshmi Maatha Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Satyalakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MUNEPPA T', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Traders Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI KALYANI RAW  BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri VijayaDurga Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bismilla rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satya Krishna food industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RVS Raw And Boiled Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Bhavani Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA SANKARA FLOUR and OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ADILAXMI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'DAYANIDHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'R BHASKAR RAO RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PENUSILA  LAKSHMINARASIMHA RICE TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VIGNESWARA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sri Satyanarayana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA RICE PRODUCTS  CONT SRI LAKSHMI NARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI TRADES AND TRANSPORT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Annamalai chetty flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRIDEVI RICE TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri satyanarayana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kumar Rice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI LAKSHMI DURGA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANAYA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sujatha Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri rama mini modem ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Andalamma rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kankaratna rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJAI DHANAYA LAKSHMI MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Devi Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri LakshmiNarayanaGanesh Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi Ganapathi Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri sitha ramanjaneya rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATESWARA PADMAVATHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ananthalaxmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJAGOPAL RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TULASI MODREN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI SRINIVAS RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parameswari rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RADHA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri kanakadurga rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Divya teja floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR  MILL ANKANNAGUDEM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Satyanarayana Rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata ramana flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatarama rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Janki Rama Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Mahalakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree Sita Rama Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBHASHRI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Guru floor oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dasari Chellayyamma', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MARUTHI RICE PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Rama mini rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Appala Naidu Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI DURGA RICEMILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri chandramouli rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rada Krishna Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMALINGESWARA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI RAMALINGESWARA RICE AND OIL MILLS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL AMMAPALEM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kodanda Rama Rice Flour and Oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanakadurga Rice Mill ponnekallu', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Amaralingeswara Swami Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri mahalakshmi surya rice and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DASARATHAN oil rotary mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI AYYAPPA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'THIRUMALA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri simhachala rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GAYATRI FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chandravathi flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R N Murthy floremill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAGHAVENDRA RICE  FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri SivaParvathi Raw and Boiled Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri samundeswari rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI  SAI  DURGA  RICE  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Satya mini rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya Sai Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Lakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHANA RICE AND AGRO PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sree seetharamanjaneya rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI VENKATA SIVA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sattayya par boiled and raw ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'TKN RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'KOLLI VENKATESWARA RAO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAYALAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATESWARAA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'JAYA SRI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka Rice Mill Burja', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venteswara traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VADDADI NARAYANA RAO RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vijaya Lakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VASAVI MINI MODERN RICE AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkat rama rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkata Sai Ganesh rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Dhanalakshmi Raw Boiled Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vigneswara Balaji Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA  RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA KRISHNA MODERN  RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'sri venkateswara rice mill new farm', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RVS BOLLING RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI DURGA RICE TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'NK Ekambaram', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'NAGARJUNA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI DURGA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Dhanalaxhmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata vijayalakshmi ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVENDRA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJESWARA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Venkateswara Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAPURNA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATAPADMA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SATYANARAYANA REDDY RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vannisha beebi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai chakradhara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SUBRAHMANYAM INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SATYANARAYANA TRADERS CONTRS SRI ANNAPURNA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATA SUBBA RAJU RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lachanna boiled rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI NIRMALA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'venkataewara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'laxmi narasimha flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUPRIYA RICE MILLS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R venkateswararao', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Rama Modern Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SAI GAYATRI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SIVA SHANKAR FLOUR DECORTICATOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhana Dhanya Laxmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'komma adibabu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi sai balaji modern binny rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri seetha ramanjaneya traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUNIMU RICE AND FLOUR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJ RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '29']
[' Industry Name ', 'venkata durga floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sharavana Rice Products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI SAI SURYA RICE AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SATYADURGA RICE TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'Tirumala Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara rice', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ELETIPADU SOCIETY RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Venkareswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SURYA PADMA BOILED RAW RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRILAKSHMIVENKATESWARA RICE FLOUR', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lela ganesh rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SASIKALA RICE AND FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJARAJESWARI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI MARUTHI SAI LAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI BALAJI RICE PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI GAYATRI RICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri sitharamanjaneya ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI JAYALAKSHMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkata Ramakrishna Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri omkara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Anapurna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara mini modern 20  rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIVENKATESWARA RICE and FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MK MINI RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara rice millu', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Jayashankara Rice and Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURYA RICE MILLL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YAGA SRI ANJANEYA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivas rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYANARAYANA RICE FLOOR OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI YERRAYYA AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI MODERN RICEMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SANAPATHI PAYDAPUNAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sudhakara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAMARDI PRASAD RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'om muruga rice mill and decorticated', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramchandar rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANANTHA LAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sai Ganesh rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sreevenkateswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURAKAPA KRISHNA VENI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karri Appalanaidu Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJYALAKSHMI RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PK TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri govindaa rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kajakhadeer rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'varalakshmi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rice Mill Melchuru', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi kanaka durga rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'site trading company rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SREE SUBBARAJU RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkata Durga Hanuman rice and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SANKAR RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Hanuman Poorna Rice and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI FLOUR MILL Ramanayyapeta', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI TEJA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SRI VENKATA RAMA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi vilas rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI SAI TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BHOLAKAMMATHALLI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KALYANA RAMA AGRO TECH CONT SRI DEVI MAHALAKSHMI RICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Jay Lakshmi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIRD SAI BABA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vishnu Priya Modern Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Keerti Sri Mills', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHANALAKSHMI MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srilakshmi rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'modhamamba rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RANGAIAH NAIDU RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vanapalli Suryanarayana Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Venkata Satya Satya Sai Rice Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA GANAPATHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'subhahan rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Vinayaka modern rice mill garikipadu', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI KRISHNA MRM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA VENKATA LAKSHMI RAJA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SASIKRISHNA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GOPALAKRISHNA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA AYYAPA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'sri ramana bhagavan rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SAI RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANDHRA RICE PRODUCTS LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri varah venkat laxmi narasimha mini modren rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sivaparvathi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHAGYALAXMI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri sai venkata veeranjaneya flour rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya pindi mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIRIGAPURAM SRINIVASA RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RICE MILL KIRAN KUMAR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata samba Siva Raju rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BLUE LAGOON MOTELS AND PROPERTIES PVT LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri surya gangotri agro industries rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Karri Tavitinaidu Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SABHAPATHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'CHAYA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA SAI TRADER', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vanthala  Ramurthy', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madushudana rao flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI UMA MAHESWARA RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'JAGANADHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI JANAKI RAMA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VENKATA SIVAPARVATHI RICE AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Satyanarayana ricemil', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri sathyanarayana rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganapati Flour and rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venketeswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi raw and boiled rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MVR R AND B RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri seetharatna modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gorle prakash rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sriramaa rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara Rice Flour and Groundnut oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'y nageswararao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAITEJA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Prasannanjaneya Rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v venkateswara rao rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chanti babu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinevasa Rice and floor Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURYA SARVESWARA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI BALAJI MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkateswara Mini modern ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Srinivasa Rice Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Devagun Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJ KUMAR RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GATHUNA GURU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMA SRINIVASA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'killo Addu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI GANAPATHI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMINARASIMHA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'k s Narayana rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Rice Mill Kothapalem', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI AGRO INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'PADMASRI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Balakrishna rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara  Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA SURYANARAYANA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri shirdi sai rice and decorticator', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VARAHALAKSHMI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venugopala rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALA KRISHNAN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'V B Reddy Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bhagya lakshmi flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya mini modern rice flour and oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai krishna rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AMMA MINI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara  boiled rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SURYA SUNDARA PANASARAMANNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sripydithalli amma thalli rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI PRAMEELA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRK MINI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI SAI LAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Ramu ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Machhamma Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana Swamy Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna Rise and floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms UP VEENA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'srisai rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara Rice Mill Somavarappadu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'PARAMESWARA RICE MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA BOILED AND RAW RICE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SHRI SRINIVASA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'seetharam rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Daiva krupa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi thirupathamma Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri krishna rice and flour mill  vattigudipadu', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jagannadam Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SEETARAMA NAGABHUSHANA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'dharmateja mini rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PARTHI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RATHNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkatasatyanarayana rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Gowrachandra mini ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABU TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'No 7 Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri mahalaxmi trades', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'marlamaba rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja rao rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhapanamm Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyannaraya Rice And Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jamana seethalaxmi', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkatappa rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri saibaba rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE SAI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BK Enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Seetha ramanjaneya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'parameswari rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ram rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai srinivasa Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASTANAIAH RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri raja rajeswari Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA MINI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VARASIDDI VINAYAKA RICE FLOUR AND OIL ROTARY MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Mini Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara traders surya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Srinivas Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA LAXMI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI SURYANARAYANA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri SaiLakshmi modren ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'harshini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vijaya lakshmi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'mavuri traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flourmill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata Mahalakshmi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswra mini  modern flormill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vijayalaxmi rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MURTHY MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Luckshmi Rajhym modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'veravenkata satyanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'varanasi vovindarao SRINIVASA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'RICE MILL BOSU REDDY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNA  RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms Sri Janaki Rama Raw  Boiled Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sitarama rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ayyappa swami rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRIRAMA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri srinivaasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri veeranjaneya rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'krishna Murty Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'seetaramanjineeya mini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENAKTARAMANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Seetaramaraju Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SESHADRI RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'srivenkateswararicemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'jai Durga Mata mini modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata lakshmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Raju rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rampuri rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'varada sambanaidu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI BALAJI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GANDI CHINA VENKATA RAMAYYA MINI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sankar rice and floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai rice and Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'T J Modern Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS NEHA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vasavi Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LEELA VENI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkant ramana rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Neelamma Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHARAN RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'laxmunaidu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkata Krishna ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata kanakamaha Laxmi', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Seedari Subbarao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijayalakshmi mini modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sri sri devi narayani rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKA MAHALAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri samba siva rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHAMUNDESWARI FLOUR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI NADHA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYANANDA RAJA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MAHESWARI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thirupathi Ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAMPATH VINAYAKA RICE MILL TENUGUPUDI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa Rice Mill Kothapalem', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Yejjipurapu Jayalakshmi Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PARAMESWARA DECARDIGATING MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srivenkateswara rice and flore mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SHRI SIVA SAI RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GANA SRI SAI RAICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KOTTAMMATALLI FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Paradesamma Rice and Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI GANESH RICE MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MUNNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYA LAKSHMI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL CONTRACTOR', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Mauthi Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI RICEMILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'srisaibababunny and modren ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Arjun rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Rama modern rice and GN oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SATYA NARAYANA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gayathri Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'umamaheswara mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi bhaskar rao rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KANAKADURGA MINI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DEVI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Anuradha Rice Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri srinivasa  rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramachandramurthy rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA MODREN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Santhosh rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gowri Shankar Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa construction rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasarao Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara adhilakshmi kameswari rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'pilla laxumnaidu mini moderan rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI AGRO TECH', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Dhanalaxmi mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri lakshmi tirupatamma rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MALLIKARJUNA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PATHIVADA SANTHA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri  Karthikeya Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkataramana Rice and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka Durga rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DEVI RICE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'annapurna ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramalingam Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sir Aaurthor cotton modern rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'sri seetarama modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Rajarajeswari Agro Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SUNDAR RAO MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Demudu naidu Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Bharathi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI ADITYA AGRO INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Sri Sri Trinadha Swamy Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'surya rice and floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'lakshmi narayana  rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kayala Venkatarao rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sonnu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TRIKOTESWARA FLOUR AND RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SriLakshmi Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA HANUMAN RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ganesh rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D N RAO RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chittibabu Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi decors and floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'raja ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ricemilll', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi  Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYA SAI GANESH ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'venkateswara man trading rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai srinivasa rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAXMAMMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI KRISHNA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree guru modern rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vemkatesvara Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Manikesari Rice Flour and Oil Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'wet grinding', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGARANI MODRAN RICE MILL NAGARANI MODRAN RICE MILL MARRIPADU', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskara Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA  BALA BALAJI RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Ramunaidu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramarao rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'RRR Rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE VEERANJANEYA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI SUDARSANA RICE AND FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nookalammathalli rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asiramma thalli rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJA RAJESWARI RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NALLAMILLI VIJAYA BHASKARA REDDY AND OTHERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'BOJJAYYA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Visweswara ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Sri siva naga sai sakti rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'atchuta naga satyavathi', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri modakondamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivas modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naidu Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aruna Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara mini modern rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateshwara Rice Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S V PANDU RANGA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Baba Rice Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASINATH RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUDHAKAR RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramakrishna Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE MILL LESSE SAI DURGA RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Simhadri Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA KRISHNA MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sri venkateswara rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWARA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIRAMA MODERN RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kadirulla modern rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VENKATA RAMANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI RAW  PAR BOILED RICE MILL  LESSto SRINIVASA RAW  PAR BOILED RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI ANANTA LAKSHMI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Krishna rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri  venkat Naga ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ganesh rice and floor mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Suribabu Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana Raw and boiled rice Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Swamy Raju rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Srinivasarice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'A1 MODERN RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'nagendra traders sri Venkateshwarao rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'lakshmi Deepthi rice non trading', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI DURGA RICE AND FLOUR MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMINARAYANA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Anjaneya Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ragavendra rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Ratnam modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SARASWATHI RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkatesh Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maruthi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VEERABHADRA MINI SHELLER INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI CHAMUNDESWARI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri pathuri madhava rao rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKA MAHALAKSHMI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'annajirao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAKSHMI RAW AND BOILED RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'PAPANNA RICE AND FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Reddy Appalanaidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kalavathi Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAYUDU AGRO INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SRINIVASA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'k rama naidu', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri kanyakaparameswari rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasavi Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa baby rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramana Rice Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Habeeb Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Srinivasa rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA MARUTHY SAI LAKSHMI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'M KRISHNA MURTY RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURESH RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARUNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAGAVALI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHA KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmisrinivasa flour and oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'karri appalakonda rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI MEGANA RICE And FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri durga rama saranam m m r m', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYA LAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Sri seetharama baby rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yedla Appalanaidu Ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BHAGYALAKSHMI RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kodanda Rama Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SUBBA LAKSHMI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Ramesh Modern Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi venkateswara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Surya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SIVA GANGA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ramarao Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jaya Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA PADMAVATHI RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri RAMA modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI  BHARGAVI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NS REDDY AND OTHERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri lakshmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Murali Krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Sitaramanjaneya Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'Sri Varalakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddivinayaka rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gowry shankar rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'satyanarayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'padmavathi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai srinivasa modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VASAVI SRILAKSHMI DURGA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERABHADRA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BASMATI MODEM RICE MILLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ']
[' Industry Name ', 'SREE LAKSHMI MODERN RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Tadavarthi  Yugandhara Naga Venkata Durga Prasad', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ramana Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi narayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KARTHIKEYA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE RAJYALAKSHMI RAW', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'THE ISUKAPALLI CONSUMERS CO OP STORES LTD NO I 2158', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANALAXMI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Godavari enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RANGAVADUTHA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHANA LAKSHMI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Venkata satyanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'pulla Reddy modern rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GUMMALA RAMANA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Narayana seetty Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T RAJU NAIDU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Ganesh Rice Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'sri naga veera venkata satyanarayana rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri bangaramma mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI GANAPATHI ENTERPRISES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI SRINIVASA RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DANDUMUTYALAMMA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Durga Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'RAMALAXMANA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI APPANNAMMA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Harihara Sri vijaya durga mini rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMANJANEYA MINI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYALAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya rice mill and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'neeraja rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri maruthi sago and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRINIVASA AGRO FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'sri lakshmi thirupathamma rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gangadhara Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Suryaramana flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata ramalingeswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Laxmi Narsimha rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Subramanya swami rice mill and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sai Siva Manikanta modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BISMILLAH RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KOVVADA LAXMANA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Modern Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Swathi Traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MANNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sunkara subbarayudu rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri veerabhadraswamy modern rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'someswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Tirumala Srinivasa Modern Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'G narayanaswamy', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri ramanjaneya modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopala krishna Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOVINDHA REDDY RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJA RAJESWARI BINNY RUBBER SHELLER RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PAVAN DURGA RAW RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Srinivasa mini rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA KRISHNA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE PADMAJA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'krishna rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi sai baba rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vamsi krishna Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHENGA REDDY RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI GUNUPUTI YERRAYYA RAW AND BOILED RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ANITHA RICE COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'veeraiah para boiled rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Narayana Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkatasaidurga ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Narasimha Rice And Floor Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DM MODERN RICE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Hanumanthu Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudheer Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETA RAMA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'TAJ RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Baktha Anjaneya Rice and Flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GAYATRI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'DHANA LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maha Laxmi Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara rice working company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkatasatyanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri laxmi venkatasai rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'S APPALANAIDU RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MARRAPU  JAGANNADHAM RICEMILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRABHU RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI BALAJI RICE FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE MILL LESSE VIJAYA DURGA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sai Sri Rice and Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ramalingeswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIVA KUMARI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJYALAKSHMI MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Sita Rama Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANAPATHI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'FRS Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'AMRUT BEEDING HOUSE', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinivas carpenters', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI KRISHNA FLOOR AND OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chand saheb rice bill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amrutharao carpentry', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Andhra Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'nageswari wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'LAKSHMI NAGENDRA TIMBER DIPO', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'shaik janu tember', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Srinivasa Farms Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '72']
[' Industry Name ', 'Sri Venkata Ratna Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai Venkateswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK BAZIDBI RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Abdul kalam azad timber works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SIVA SAKTHI FURNITURE SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Shiva Shankar furniture  works', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI KRISHNA SAW MILL', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vemavarapu baburao carpentry work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'JAN PAHAD SAIDA SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMESH SPICES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohiddin Sa Wood Works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mannam Syamala wood carving works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GREEN INDIA AGRITECH', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mabuvali wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'gandikota krishnamachari', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'UMA MAHESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sanari wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'snikitha sree  welding', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SATYA SAW MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI VISWAKARMA COMPUTERISED WOOD DESIGNS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vemavarapu nanaji wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'manubrahma plan wood', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SGS SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri neelampati ammavari water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sree venakta sivasatya Narayana flour and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jai hind rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srivasa wood works', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'mahanarao wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'srinivasa  wood  and welding  work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 's babji wooden furniture', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MS SLNVB DURGA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai baba Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri veera bhadra rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOGALS FURNITURE LAND', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'NARAYANA SWAMY', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARINANDAN WOOD WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Padmaja Super Foods- SRI VENKATA RAMA KRISHNA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'NIMMALA RAMESH RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Urvasi carpenter shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MD saleha wood works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GBR Hacheries Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sree Durga purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYALAKSHMI RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sathibabu carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Raghavendra rice and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Swamy Ayyappa Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai bhavani CNC WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'simhadri engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkatarani rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI MINI RICE MILL AND FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Manikanta saw mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'nakkina satya prasad', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'CARPENTERS WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopi wood  Aluminium works', ' District Name ', 'Kadapa', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkatrao Poultry Form', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sriramamurty rice mills', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka furniture', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SVS CNC WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'prem rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Idris wooden works', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'jai Durga Devi sri Veera bhramendra furniture shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DATHA SAI FURNITURES', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DOMINEER', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI ARUNODAYA KAMADHENU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed taj furniture works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'GOUSIA SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri Venkateswara timber and plywood agencies', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'MAHESH FURNITURE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Ambati Ramarao Carpenter Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'lokeswara carpentry works', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Sri sambasiva Swamy saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOULANA SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'NEW DIAMOND SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Mahaboob saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SATYANARAYANA SWAMY saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI COMPUTERISED WOOD CARVING', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sribharathiflourmill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA DURGA FLOOR AND OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata mutyamamba rice and flour', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Veearavalli Wood furniture works', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahaboob Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'EPOXY AND STEEL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI MOHANA SHIVA SAKTHI BIOMASS INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Md Esmail Wood Works and Saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SANVIN FURNITURE', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SOHAIL INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Lakshmi saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri ayyappa hd wood designing', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'JWALA JYOTHI MODULARS DESIGNERS', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI RAM SAWMILL AND TIMBER DEPOT', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Satyanarayana and co', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Alluri Mallikharguna Rao', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'wow modular industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'mohanrao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'santosh kumar', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara handy crafts and gift gallery', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'MFG OF WOODEN CRATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LENKA RAMU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lalithamba rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARAYANA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRI SRI Narayana swamy CNC design wooden cutting', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'Gayathri Timber Mart and Saw Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PHOENIX BIO SOLUTIONS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri suryavathi saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sanyasirao Carpentry works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'poleremo wood works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'SRI DWARAKANATHA RICE MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ambica interiors', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'ABYUDAYA WOOD CARVING ARTISANS MUTUALLY AIDED CO OPERATIVE SOCIETY', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED']
[' Industry Name ', 'sri lakshmi durga saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARI SHANKAR SAW MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkata Lakshmi rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vasavi saw mill', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri chaitanya sai rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vigneswara rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veerabhamendra swamy', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subramanyeswara Rice and Floor Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAMANA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'C VEERABHADRASWAMI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NETTIKANTI ANJENEYA SWAMY SAW MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MURALI KRISHNA SAW MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BALAJI POULTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SAWMILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gopalam venkata sibba rao saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'venkata kanaka mahalakshmi saw mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI TRADERS AND SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri bhimeswara saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI GAYATRI EDIBLE OILS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE BRAN OIL AND DE OILED BRAN CAKE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '26']
[' Industry Name ', 'Sri Venkata Samba Siva Saw Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Srinivasa Saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Mehboob saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Rasoolulla Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Basha Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noor Mohammad saw mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri gokul dall mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Pulses Processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VISWESWARA SAMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'RAVI TEJA SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MURTHUJAVALI WOOD BASED INDUSTRY CUM DEPOT', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MABUB MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POTATO CHIPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'Saw mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'padmavathi saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vijaya Lakshmi saw mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA DURGA SAW MILL', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ramakrishna saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N ramulu cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Kanaka Durga Saw mill and Timber and Furniture', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAMBA SIVA SAW MILL TIMBER DEPOT', ' District Name ', 'Prakasam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'khader vali saw Mill and Timber Depot', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VICTOR SAW MILL AND TIMBER DEPOT', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jahoor Shavali Saw Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Balaji Saw Mill', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Timber Depo', ' District Name ', 'Guntur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATASAI PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI JAGADISH TIMBER MART', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'lakshmi veera venkata saw mill and timber depo', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'GAYATRI TIMBER PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PRAKASH TIMBER MART AND SAW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI UMA PACK TECH', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAW MILLING AND PLAINING OF WOOD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ANDHRA SAW MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'SAWING OF WOOD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'viswanath timber', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahaveer Doors industries', ' District Name ', 'Krishna', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD SAWING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE  INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'Kullaiswami Wood Planing', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Ali Sher purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veerabramhendraswami wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata lakshmi poultries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S BULLIVANKAYYA COTTAGE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'WOOD BASED', ' Activity Name ', 'WOOD PLANING AND DRILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sivareddy kolla farum', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ma kothari rice milk', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Anirudh poulatries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMACHANDRA DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARABANDI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mahaboob Basha', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SATHYASAI POULTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KANAKASAI POULTRY FARM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Poultry', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'durga rice and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Pavan Poultry Farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'POULTRY FARMING WITH FEED MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri rama lakshmi flour and rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'varalakshmi poultry farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'quali trades', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bike repair service centre', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Devi mrm', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PUFFED RICE MANFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Mmineral  water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PURIFIED DRINKING WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Kumar Agro Oils Private Limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE BRAN OIL AND DE OILED BRAN CAKE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '61']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Raghavendra rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURYARATNA MODREN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Subhakari Modern Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Rice mill less than 10 TPD & rice hullers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Padmavathi Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai Kissan Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateshwara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veerabhara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Navarang Rice and Floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi srinivasa rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri Venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURYA BHARATHI INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI AMARALINGESWRA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hari and Kishore Rice and Floor Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DONKADA RAMMURTHY NAIDU Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'annapurna rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara  rice  mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEETHARAMA RICE PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAPTAGIRI MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'chennakesava rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BRAHMANDRA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVAS A RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA VENKATA NAGA SAI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'sri lakshmi ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'B K Padmamma', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI Balaji Baby Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jesus krupa rice  mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri laxmi durga rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sr Satya Sai rice and floor oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Prasannanjaneya Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUBRAMANESWARA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Anjani rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI AYYAPPA SWAMY RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateshwara products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hari Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUNCHA NAGAMANI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkataramana rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS GOWTHAM MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI RAMA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri lakshmi vilas rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri suryanarayana Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MUPPARTHI AMMAJI', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara modern rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SEETHA RAMANJANEYA  RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'B PRABHAKAR REDDY RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE RAMAKRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRIMANNARAYANA RICE INDUSTREE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'vijaya laxmi modern Rice and Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MARIYAMMA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JAI BHAVANI MANI RICE AND FLOUR MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri gowri sankar flour and rice mills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGASAIMANIKANTA MINI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PASN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKANNA TRADERS CO GAYATRI MRM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri raja rajeswari mini rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MEHER BABA RAW AND BOILED RICE MILL CONTRACTORS COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Srinivasa rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Family Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S PRAKASA RAO RICE FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI MANIKANTA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGA BHAVANI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Kanyakaparameswari Rice  Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh Ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi venkata Durga Ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANIKANTA SRINIVASA LALITHA MINI AGRO RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Meher Baba Modern Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KRANTHI PRASANNATA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri siddakutari mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gangadhar rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Janaki Rama Floor and Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P Rangaiah shetty Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jesus Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Andhra Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDRA SHEKHARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Ganapathi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Krishna Murthy', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAMSI KRISHNA  TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ranjith Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi satya Narayan rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARAYANA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balambica Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI SATYANARAYANA MINI RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMAVATHI SRINIVASA PAR BOILED RICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA KNSUMA SURYA RAW RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'srinivasa rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GEETHA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'fathima rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sundari Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'om sai ram rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ramakrishna mini modern rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pydalamma rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TADDI SAVITRAMMA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Ramaprabhakara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V NARAYANA RICE MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KONDIPATI ARAVIND', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri subrahamanyeswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskar Rao Lake', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dhana lakshmi rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJYALAKSHMI RAW  AND PARABOILED RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri satya venkata ramana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA VIJAYALAKSHMI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI NAIDU RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmisrinivasa Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi ganapathi enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Srinivasa Modern Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Lakshmi Venkateswara Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SURYA MODERN RICE AND OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri kanka mahalakshmi mini rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkatarama Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VEERANJANEYA BINNI MODERN RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Maha Lakshmi Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOWRI Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shekar Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji dall rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Narayana mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SOMESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SEETA RAMA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAINADHA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA TRADERS Co ESWARASAI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Venkata Bhaskara Rice Industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI Rama pydimamba rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'REDDY VEERRAJU CHODWDARY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA MINI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATA PADMAVATHI MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYA SRIDEVI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM SHAKTI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri laxmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SMS RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Dorasanamma Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI ARAVINDA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'devi dhanalakshmi rice traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vijaya sai rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Gowri sankar rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sairam  rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYALAKSHMI MODERN RICE MILL POLUKONDA', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Nagendra Rice and Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATA GANESH TRADERS CO Padmavathi Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhaskara kondamma rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADITYA LAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURYA RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'jiSRI VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA NAGA SUBRAMANYESWARA FLOUR AND RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya narayana rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'APPALANARASAMMA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'chinnayamma thalli rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA SAW AND RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharath Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'demudamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BODDU RAMUDUMMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vigneswara Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vasavi Kanyaka Parameswari AsiriNaidu Mini Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Srinivasa rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'sri sai ganesh rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA AGRO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Seetharamanjaneya Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMACHANDRA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI BALAJI RICE TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SWAMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rama Krishna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI AGRO MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANYATHA RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI SAI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jayalakshmi Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Yerakalamma Ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASULU RICE DECORTICATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'koneru seshu kumari floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sita Ramanjaneya Traders Contracts Sri Lakshmi Srinivasa Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI NARENDRA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI SATYANARAYANA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri satyanarayana rice and flour mill ravicherla', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEETHA RAMANJANEYA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI PADMALAYA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'AZAD RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara mini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Satyanarayana rice and atukulu mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANALAKSHMI MORDERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI JAYALAKSHMI HI-TECH RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Sri Rama Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijayaLakshmi Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri basavaiah  rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI RAMA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA PADMA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI RAMAKRISHNA INDUSTRIES RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vinayaka Modern Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri veera Venkata Satyanarayana rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'laxmanarao rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI  VENKATESWARA RICE  AND FLOOR  MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkata Satyanarayana rice flour and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATISH TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Lakshmi Narayana rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABU AND BABU AGRI INPUTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Srivenkata padmavathi mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKKSHMI DURGA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Sri Venkata Ramana Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Chandrika Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'sri Ganapathi santhoshi matha', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Annapurna Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHARATHI RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Surya rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sai Durga Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'VIJAYALAKSHMI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri Laxmi Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'bhagya lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA KANAKA DURGA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BEBO INTERNATIONAL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'Sri Jayalakshmi Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata Lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SANJIVA REDDY RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dhanalakshmi Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'Gopala krishna rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri anjaneya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D subbarao flour and rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KESAVA RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI NEELAKANTAESWARA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUVEERA AGRO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARIDIMAMBA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajeswari Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHAVANI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI BABA ENTERPRISES Co Dhanalakshmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri gaja Lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BAPUJI SATYANARAYANA RM LESSEE VENKATESWARA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NEW SRI SAI BABA MODERN RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ramakrishna Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Chenna Malleswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi rama rice and floor mil', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satya prasad rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Asaad FMCG Industries Private limited', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'PARVATHIPARAMESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VAISHNAVI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'chinnakesava rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SIDHI VINAYAKA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI ADILAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shyamalanbha rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VALLURI SATYANARAYANA AND OTHERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'M S JAYALAKSHMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMAMAHESWARI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Thalupulamma Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA RICE MILLING', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'chamundeswari traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lalitha Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENUGOPALA RICE AND TURMERIC POLISH MILL CONTRACTORS CO', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI RANGAMAMBA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkatesh Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri lakshmi ganapathi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SIMHADRI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijay durga rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhoomika Rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI NAGAVARAPAMMA TRADERS Co SRI VENKATARAMANA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Ali Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pavan sai rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Modakondamma rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Sri Lakshmi Narayana Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'SRI SRINIVASA RICE AND OIL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri vasavi mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Gowri shankar rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNAVENI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DEVI DHANALAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Rice  and Fl Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sattibabu', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA LINGASWARA MINI MODERN RICE AND FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai BaBa flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna Rice Industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'Sri Satya sai Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vijayariceworkingcompany', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'karunamayi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naidu Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata satyanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI AYYAPPA RICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VEERABHADRESWARA RAW  BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'sri varahanarasimhasatyanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Balaji Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree lakshmi rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya  Sai  Food Products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI BABA RICE TRADING COMPANY Co  sri vigneswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sathyanarayana Ricemill And Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Ganesh Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYESWARA RICE AND FLOUR  MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri satya traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SwamyNaidu Ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI RADHAKRISHNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'SRI RADHAKRISHNA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MURALI KRISHNA RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sambasiva Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMANA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SYAMALAMBA MODERN RICE MILLS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Surya Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANAYA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai lakshmi rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanyaka parameshvari rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anjaneya Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GURURAGHAVENDRA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '27']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA TRADES CONTRACTOR SRI RATNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prasad Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kolla venkataraju', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATARAMA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MEHER CHAITANYA AGRO FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata veeranjaneya modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Raja Ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SARADAMBA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHAITANYA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Radhakrishna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SEETHA RAMA RAW  BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'sri maha lakshmi agro industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Durga Sai Manikanta Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mallikarjuna rice and Flour Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Haripriya Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri veera venkata satyanarayana rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'yesu Raja rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI PRASAD RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Vilas curry point', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BABA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bhaskar Rice mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SHIRIDI SAINATH INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'VENKATA SAI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'APPIDI MOHAN REDDY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Lakshmi Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vangapandu Sriram Murthy rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maha Lakshmi Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIVENKATARAMANA RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmidemullu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI GANESH PARADESAMMA MINI RICE FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LALITHA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narayana Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Indrabhavan rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA PADMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Nagendra mini modern Rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata dhanalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara agro food industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Krishna rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'J VENKATESWARULU', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI MITHRA TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVAKAMESWARI DEVI RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Saraswati', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Adilakshmi Rice  Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJA RAJESWARI MODERN RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Kasi Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'G VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa trading company', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Sri Kanaka Durga Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ganesh Rice and Floor', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MURALI KRISHNA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya MARUTHI rice flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanakamahalakshmi Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhuvaneswari Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Satya sai ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Srinivasa Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Kimudu Bonjubabu Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gowrisankar Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA MAHALAKSHMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi Rice Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi Venkata Ganesh Raghava Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'R N GUPTA TRADING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA MODERN RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Kanaka Durga flour and allar rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Padalamma thalli rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYADURGA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'VENKATESWARAO RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Subani Ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SHREE GOWTHAMEE RICE INDUSTRIES  PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '30']
[' Industry Name ', 'venkata satyanarayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANNAPURNA RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'BHARAT AGRO FOODS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri subramanyeswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Simhachalam rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAYESU TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Satyanarayana rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Allari Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna RiceMill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJYA LAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Purnima traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI BHAVANI TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Veera Venkatasatyanarayana Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHAN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI ABHAYAJANEYA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RK MODREN RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Aruna Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Vijaya Lakshmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri manikyamba rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHALAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SANTHI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanyaka parameswari new rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata ramana rice flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHINMAYA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI TIRUMALA RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Rama Chandra Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Laxmi Flour And Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veera venkata satynarayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SURYATEJA RICE INDUSTRY Conts GAYATHRI MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Sri Sai Lakshmi Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sathyanarayana rice amd floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA RICE FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sir mahalakshmi Rice  flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANYAKAPARAMESWARI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sairam Krishna modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SATYAVATHI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE  FLOUR MILLS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VISHNU SAI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Jayalakshmi ricemil', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri jaihind rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Raghavendra rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Venkateswara Rice Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JANARDHAN NAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Appala Narsamma rice card', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi ganapathi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Rice Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'SRI RAJYA LAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'panduranga rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara Rice flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sambasiva rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkatalakshmi narasamma Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaya surya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai venkateeswa rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KOTHURU PRAKASH     SRI VENKATESWARA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENU GOPALA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Raja Rajeswari Rice and Floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHANMUKHA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VAMSIKRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KRISHNA KANT ENTERPRISES CONTRACT SRI RAMANUJA RICE AND OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'narayana murthy rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAGHAVENDRA SWAMY RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VASAVI RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'm s Dhanalaxmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R A S N RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI VIGNESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sitarama rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Devi Rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA KRISHNA RICE COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI BHASKARA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SAI BALAJI RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Vijaya rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'APPANAMMA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAMBASIVA RAW RICE AND BOILED RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'raghavendra rice industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Kesava Lakshmi Ganapathi Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri dhanalakshmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ramana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Manikanta rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kasturibhai Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAIDU FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Murarji Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhana Lakshmi Krishna Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MALLESSWARI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'sri venkata SATHYA sai siva rama krishna rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Ganapathi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMANJANEYA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '32']
[' Industry Name ', 'SRI MARIDIMAMBA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rice and dal flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Seetharamananjaneya Rice Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATASATYANARAYANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K A naidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Jagganna Modern Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri satya sai rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKTESWARA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'sri ramachandra rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Achimamba rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sitarama rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Seetharama ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Danalakshmi Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkataramanamurthy rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri   venkateswara modern Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREEMATHI YARRAYAMMA PERANTALU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SREE LAKSHMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOPALA KRISHNA RICE  AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERAVENKATA RAMAKRISHNA RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'vijayeswari Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI JAYALAKSHMI RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'seetha mahalaxmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RAJESWARI AGRO TEK MILLS P LTD  ANTIPETA VILLAGE SEETHANAGARAM MANDAL VIZIANAGARAM DIST', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Satyam Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri suryodhaya rice and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Palasa Ramarao Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adirenuka Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara Rice and Floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai baba rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SATYARAORICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Simhadri Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Modhamamba Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SivaramaKrishna mini Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAKSHMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'venugopala swami rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai krishna rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gowri shankara rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AYYAPPA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'vijaya lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SURYA SRI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara mini modern rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Radhika Agencies', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Ramakrishna rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri lakshmi rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PEDDIREDDY SHESHAGIRIRAO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', '1', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Sathya Narayana rice and flour mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Pandarinatha Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARVATHAMMA  RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'P Appalanarasamma Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siva sai rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJYALAKSHMI RICE FLOOR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai balaji rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshminarasimha mini modern rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAXMI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri rama cottage industries and rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA FLOUR AND RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri vijayadurga traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SVRR RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Srinivasa rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana rice and Flore mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA DURGA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'sri venkateswara ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vinayaka Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA RAO RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Arunachala Agro Foods', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI DEVI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri balaji rice  and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI SAI KRISHNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramakrishna Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMAKRISHNA RICE AND FLOUR MILL RANGANNAGUDEM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'PANDURANGA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VEERA VIJAYA LAKHSMI GANAPATHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ANNAPURNA PAR BOILED RICE MILLS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'BATTULA SRINIVASA RAO NON TRADE RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SIDDESWARA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri venkata padmavathi rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V G S TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa rice flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAINATH RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI RAM RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRASANNA MARUTHI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VPN RAW  BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIKRAM MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'lakshmi ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATA NARAYANA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'SOWBHAGYA LAKSHMI RAW  BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA SAI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SANGAMESWARA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'sri Lakshmi prasannanjaneya floor and rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DURGA MALLESWARA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri lakshmi Ganapathi Rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA VIGHNESWARA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI VIGNESWARA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI ANNAPURNA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'SRI SRI SATYANARAYAN RAW AND BOILED RICE RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SAI NADHA MINI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ganesh rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Krishna flour and rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bala Krishna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI APPANNA MODERN RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'DURGA MODERN RICE AND DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAINATH RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VENKATAGANAPATI RICE MILL co Ms kumar Traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ellahi motor and ricemill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramachandra Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree Satya Sai rice mil', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'jagadeswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Krishna Sai Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI BHANODAYA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veera venkata Satya  Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri laksmi kamakshi raw and boiled rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI SURYA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURESH CEMENTS AND GENERAL TADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Raghava Rice Mill Govada', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VASAVI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI KANAKA MAHALAKSHMI MODERN RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madina Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara Swamy modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI THJA RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Murali  Mohan Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI RADHA KRISHNA MODERN RICEMILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri thandava vigneswara kanayya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasavi binni rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYA LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Durga Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI SUBRAHMANYESWARA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI BHAGAVAN VENKAIAH SWAMY RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SANTHOSHI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI TEJA RICE MILL AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Sri Venugopal rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MOHAMMADIA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVAS DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE WORKING CO', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama Modern Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENGAMAMBA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Annapurna Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Fatima Rice and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Ramana Rice floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI RADHAKRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Sri Venkata Manikantha Modern Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Divya Chandra Raw  Boiled Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Sri venkata Satyanarayana rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Yohava rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SUBBALAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SriT Veera Naga balaji', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana rice and general merchants', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Mini Modern Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri rama rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATA JAGANNADHA MODERN RAW RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI ADITHYA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI SRINIVASA PAR BOILED RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri devi traders janakirampuram', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri venkata sai krishna binny rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramakrishna Rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SUPRAJA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri satyanarayana rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi Thirupathamma Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Siva sai rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'RVS PAR BOILING RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATARAMANA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'MARUTHI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bajanarayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA BHAGAVAN MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA HANUMAN RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJYALAKSHMI AGROS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Lakshmi Srinivasa traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Annapurna Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'HIMA SAI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vishalaxmi binny rice and fl mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA NAGASRI RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BAlA RAMA RICE AND FLOUR MILL CONTRACTORS COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sapthagiri Rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI BALAJI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'SRI LAKSHMI PRASANNA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATA RAMANA PARA BOILED PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'SRI JAYA LAKSHMI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'Satyasri modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri jai bhavani rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siva parvathi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA RAMANJANEYA RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri satya sai rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARAENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Bhavani shankar rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEW VIJAYA LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Annapurnamma Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramaiah Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms Sri Balaji Modern Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'khaja rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri jayalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NETAJI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI Rajyalakshmi rice and floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri ramakrishna rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI KODANDARAMA BOILED AND RAW RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'Sri Nageswarao rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'Ranganadha rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri kanaka durga rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYANA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'CHAITANYA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI RAMAKRISHNA RICE AND FLOUR MILL NON TRADING', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Jyothi rice mill and flour', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHAVANI HITECH RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ANNAPURNA RICE MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'umamaheswara rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAIRAM RICE INDUSTRY FORMALY SRI  ADITHYA HI-TECH RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SRI RAMESH RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'sri laxmi rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaya lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYA SHANKARA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAMSADHARA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ramakrishna Modern Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji Rice Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri Rama Rice and Floor Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SWARAJYA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Srinivasa Modern Rice MIll', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sitaramanjaneya Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI KVR VARALAKSHMI RICE INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMANA RICE MILL BUDDAM', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkatalakshmi Raw and boiled rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TSR MODERN RICE  MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAVANI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VEERA BHADRA MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Bhavani  Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA LAKSHMI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'FATHIMA MODERN RICE FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Bhagya Lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Anjaneya Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srimannarayana Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRILAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Andhra Ratna Rice And Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SK RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri venkata naga krishna rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DHANALAKSHMI RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHANA LAKSHMI SAI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Revathi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa RiceMill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Gajanana Rice Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI TIRUPATAMMA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATESWARA PARA BOILED MODERN RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'HANUMAN AGRO INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KRISHNA RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rajarama rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'ramanaiah rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'puvvada nageswararao', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'SRI RAMA CHANDRA VARA PRASAD RICE MILL CO', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NANDA GOPALA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI DHANALAKSHMI VENKATESWARA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri venkataramana R and B rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Papi Reddy Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sudarshan Rice Industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha Raw and Boiled Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA GURU SAI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SESHADRI RAW  AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS MODERN RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri uma maheswara Rao rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kodanda rama rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA MARUTHI RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRIDEVI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI LAKSHMI PRASANNA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANJANEYA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Venkataramana Raw  Boiled Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Karthikeya Rice Industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI GIRIDHARI RAW BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMA KRISHNA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI GAYATHRI RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Saibaba Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jai sri hanuman rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri anjaneya rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIDEVI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'sri samba sivaricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara binny rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tirumala Srinivasa rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri srinivasa rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KANAKA MAHALAXMI MODERN  RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAJYALAKSHMI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Annapurna Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAYABHERI TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI JAGADAMBA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KEERTHI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PSM RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'SRI KAMESWARI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NITYAKALYANI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkaiah swami rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VINAYAKA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Chaitanya Raw and Boiler Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJESH RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAINADH RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SATISH AND COMPANY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI VENKATA SAI TRADERS O OF SRI VENKATESWARA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Vamsee Rice Traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJA RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAYALASEEMA RICEMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surendrababu Avula', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SRINIVASA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MR RAMAKRISHNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RAW  AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri padmavathi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANA LAKSHMI RICE  AND DECORDICATOR AND FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri sai subrahmanyeswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'malleswara rice', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KARIMULLA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'chaitanyamodernricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri srinivasa rice and fl mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RADHA KRISHNA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAVANI LAKSHMI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI DURGA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI GANAPATHI RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOURI SHANKAR RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAGHAVENDRA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI ANJANEYA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'rice milling', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MURALI KRISHNA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVENDRA RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'srinivasa rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATA MARUTHI RAW AND BOILED RICE TRADING COMPANY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'VASAVI RAW  BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIGNESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKSHMI RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANALAXMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIDDESWARA RICE TRADESRS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya Durga Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRIRANGANADHA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vani rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATA SAI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SKN RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar swamy rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Annapurneswari Modern Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya Sankara rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SIVAGURU RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHAVANI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'Penta Chandru Naidu Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'saraswathi ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PENUSILA LAKSHMI NARASIMHA SWAMI MINI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi rice mill valiveru', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SITHARAMANJANEY RICE and FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VISWA TEJA SRI RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Bhayyakhan Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Narasimha Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMINARAYANA MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SMJS RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KANDAN MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Star modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree dhanalakshmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri seetharamanjaneya FOOD GRAIN TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI MALLESWARA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Venkata  Satyanarayana Agro Products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI GOWRI SANKAR RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'srivenkataramanarice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara  rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA RAMANA RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAHAMTHULLA RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Muhammad rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA SAI DALL MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI SRINIVASA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'S S VALI MINI RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KALYANI MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'SRI KRISHNARICEMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Bhavani Rice mill and flouring', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VARALAKSHMI HITECH RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MUNDARAPOTTEMMA NEW RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SYNDICATE MODERN RICE MILL  KODANDAPANI TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE RAMA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Padmavati Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE seetha ramanjaneya Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERABHADRA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sitarama Ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAHMATH RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUDHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'LAKSHMi NARASIMHA SWAMY RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sakambari Rice Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Tripura Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI BABA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'haribandu rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Lakshmi Ganesha Modern Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI VENKATA LAXMI GANESA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri Sambasiva Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri  venkata Mallikarjuna rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri satyanarayana rice mill bethapudi', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI  VIGNESWARA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MAHESH TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICEMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'UMAMAHESWARI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Gandhi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai modern rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MUBAARAK RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veerabramendra Swamy Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajya Lakshmi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri siddeswara rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Anees khan modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RICEMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Jayamma mini rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai srinivasa rice makers', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMALINGESWARA SWAMY MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAMEEL RICE AND FLOUR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TIRUMALA NAGENDRA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SAMBU CHANDRAIAH MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA FLOUR AND RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi VENKATESWARA rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Krishna sagar modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI VENKATA MANJUNADHESWARA RICE PRODUCERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'A S N RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'ABDUL KHADER BABA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Dhanalakshmi rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S J MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVI RICE TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI BALAJI RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Koteswara Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasarice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Veerabhadra rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sowdamini and venkateswara para boiled and raw rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PMR RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'New Sambu chandraiah rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'SRINIVASA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ganapati rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAJA RAJESWARI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Devi Traders', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Ambika Traders', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'K E SANJEEVARAYUDU RICE AND FLOUR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishnarjuna rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SH RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jagadamba Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'RAVI TEJA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Theyemmiganurcoopstores rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateshwara rice mill and flour mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Gavi Siddeswara rice industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAVANA LAKSHMI NARASIMHA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STAR MODREN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAYALASEEMA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi srinivas reicemill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Shakti rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri raga Deepti rice mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree Siddeswara Rice Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Sri Lakshmi Maddilety Swamy Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS SRI SIRIDISAI MANI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA RATNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Maha Lakshmi Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHAITANYA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'V V R AGRO INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATARAMA AGRO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI RICE TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'pindi mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYA RICE AND OIL FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RADHA KRISHNA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P kanakamma', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Tirumala Venkata mutyalarao rice and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sheik abdulgapuru', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Vinayaka Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice and floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri ramanjaneya rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sree Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VASAVI TRADERS CONTRACTORS OF VASAVI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'chepana jagannadha naidu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA KRISHNA RICE TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'satyanarayana rice industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'SHIRIDI SAI MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'KRISHNA KIREETI FOOD PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sai floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SPSS  SURANNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V K P RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESHWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai viswanath MODERN rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Lakshmi thirupatamma rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'subbareddy floor mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSMI NARASIMHA INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'mallrmkondaiahswamifloor mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Murali Krishna oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vasavi traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lalithambica rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANKI REDDY FLOOR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateshwara rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Raghavendra oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice and flourr mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sairam rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pradirya pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Annepu Rice Industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI NARAYANA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshminarasimhafloormill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'Achiraju Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkataratnam Rice and Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAGA VENKATA KANAKA DURGA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ESWAR RAO RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Satyanarayana and Hanuman Rice and Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Mini Modern Ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI BALAJI INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'satya siva sankara rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishna Mohan rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K A NAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji Modern Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Amma rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Venkateswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vishnavi rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NAGA MALLESWARA RAO RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'satya saravathi mini motoros', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA VEMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DEVI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PRAKASAM HEAVY ENGINEERING PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vigneshwara floor and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gayatri rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'palem rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Syamala Rice and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Laxmi Ganapathi Modern Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE INDUSTRY GANDEPALLI', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI VIJAYALAKSHMI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA RICEMILL  BONANGI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASAVI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri sai ram rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri venkataramana rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA DURGA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Lakshmi Narasamma Mini Rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri ramajaneya purified drinking water trust', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AKSHAY PURIFIER WATER', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVAS FRESH AND PURIFIED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vasantha mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shirisha water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Geeta aqua industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Varalakshmi RO plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata sai water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gadipudi Sivaparvathi', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GANESH PURIFIED DRINKING  WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAHNAVI PACKAGED DRINKING WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NTR SUJALA SRAVANTHI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RO Plant Ravada', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Murthy water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Puskala ganga mineral water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lalitha Vamshadhara natural mineral water', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata Durga aqua', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sivaganga', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vuchitha Rakshitha Manchineeti Sarafara', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vuchitha Rakshitha Manchineeti padhakam', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vuchitha Rakshitha Manchineeti padhakam', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI NARASIMHA SWAMY WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi bhavani beverages', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI NARASIMHA WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'YEDUPATI MALYADRI WATERPLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinavasa pirified drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SANTHOSHI WALTER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siri RO plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JSR FOUNDATION RO MINARAL WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shiva ganga packaged drinking water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATARAMANA WATERPLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHUVANESWARI JALA NIDHI', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOTRU CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RO plant Dharmaraidupeta', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LIFE TIME AQUA PRODUCTS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Maruthi mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHINTAMANI WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Triveni gold water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA PURE DRINKING WATER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri Devi Industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS SRI SAI DRINKING WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'skm water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABYUDAYASEVA SAMITHI', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravindra Reddy water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RBJ AQUA PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'karthika purified drinking water plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sagar Water plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', '786 Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'harshitha industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Malleswara water purification plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik abdullah shareef Charatable trust', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JALANIDHI CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri tirumala purified drinking water', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shanmukh RO water PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pallempaati Vijaya Charitable Trust RO Drinking Water', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI PURIFIED WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI VEERA BADHRA WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMMA MINARAL WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Aqua Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAA GOWRI WATER SUPPLIERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sri Krishna purified drinking water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Baba Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chinmy water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RK WATER PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suraksha RO plant', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KEERTHI PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandraleela waters', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramachandra Reddy RO plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prasad water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narayana Trust', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA GANGA WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PASUPULETI RANGABABU MEMORIAL TRUST', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddartha free RO plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUKHARA TECHNOLOGIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANTS FOR INDUSTRIAL DOMESTIC', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Om venkata sai mineral water', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANTS FOR INDUSTRIAL DOMESTIC', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Siva Ganga Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANTS FOR INDUSTRIAL DOMESTIC', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chejarla eswara reddy charitable trust', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RO WATER PLANTS FOR INDUSTRIAL DOMESTIC', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BABA IMPEX', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF SUN FLOWER SEEDS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D and G biotic', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF SUN FLOWER SEEDS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri kanaka durga mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF TAMARIND SEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Yuval industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF TAMARIND SEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SWATHI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF TAMARIND SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri satyanarayana mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF TAMARIND SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PMC RICE AND DECORDICATING MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROASTING OF TAMARIND SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri ganga bhavani flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Hariprasadrao Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 's Narayanarao  mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Susheela Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai matha flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANTHOSHI FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhanu floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE RAM FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pindi mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VELIVALA PRASADA RAO FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree dodda basaweswara flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chennakesava Swamy Prasanna flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anil Floor Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gosine flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bhuvana floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Devi Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chunduru Leela Manusha Krishna Mohan Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara oil flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyavati flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'H k doddaprasad flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'balaji flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANESWARI MINI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kumari flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Narasimha Murthy oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dadapeer flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narayana chilli powder machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Laxmi Srinivasa flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAMSI KRISHNA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gurunadha Flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhana Lakshmi Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tasha krishna flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Kanaka Sai Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Nagendra Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JayaRami Reddy Floor Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEMUDU FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srirama flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkatramudu grinders', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Netikallu Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijayakrishna Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri Lakshmi flour mill vvrm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'ARUNA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Durga oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA SRI KARUNA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya lakshmi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LEELA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA DWARAKA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P padmavathi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bashkara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE ROLLER FLOOR MILLS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'valuvalama flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ratnamma Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi Mohan flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri ram dhana lakshmi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Ravikumar flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMARNATH GRINDERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATALAKSHMI NARASIMHA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji mini floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Ram Floor and Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bhavani flour mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKTESWARA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baba flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KALYANI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kandula Vijayalakshmi flour and oil mi', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya lakshmi flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Flour Mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dadapeer Pindi machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mastan floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tilak flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHALLA VASUDEVARAO', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maheswari Flour Mills', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '62']
[' Industry Name ', 'GMS Flour mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RICE FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa mini flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'suriboina Raghuramireddi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata seshaiah flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'thowdamma mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Potluri  Agro Food Products Private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'JAYASIMHULU FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narasimha Murthy flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Jyothiswari flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Srinivasa  industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RANGA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vattumilli VVS VaraPrasad', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ravi Flour and oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vinayaka flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKAHMI WETGRINDING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vyjayanthi flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkatanarayana', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri kanakadurga mini floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya bhavani floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara flourmill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sai flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESH FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NEELAKANTESWARA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TAJFLOOR MILL AND LOTTERY MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumalarao Atta mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ritwik Flour Machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera venkata satyanarayana Rice Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shasapu paparao', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ponnuru padmavathi flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hymavathi flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'P TIRUPATAMMA  FLOOR AND RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rangarao pindimillu Borrampeta', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B AMMAJI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Abhaya Sri flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'East Viasea', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Nageshwari Pindi Machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramanamma Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jithendriya panigrahi', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chan floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri prabhakar flour and rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'purnachandra Rao chilling machine', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chekka Srinivas rao flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Durga Foormill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji rice and oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Sarathi Oil Rotary', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VRNKATESWARA FLOUR AND RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyavathi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR MILLI', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri naga durga floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajeswari rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mangayamma flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Beebijan flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VANKAYALAPATI SUBBARAO FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kola Sri sakunthala flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Oil and Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahalakshmi floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI THIRUPATHAMMA FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramanjenya Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'L A S Decorticator and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIKSHAVALI PINDI MACHINE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani flour and oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJULU FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kali mata floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Budda Vana Mohana Krishna Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjineya Swamy Floor Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S DEENA FLOOR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KMR PINDI MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateshwara floor mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramakrishna Floar mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JOHN FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kareem flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MR flourmill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandramohan Reddy Floor mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANJANEYA ROLLER FLOUR MILLS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '45']
[' Industry Name ', 'KNR FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'karnam venkata krishnaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHAJA NAYAB RASOOL FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dasari peddabayapa Reddy floor mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KHAJAMASTHAN FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN FLOUR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ROLLER FLOUR MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JAYABALAJEE SAGO MANUFACTURERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sago manufacturing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kamala Sago Factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sago manufacturing unit', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SAGO MFG CO', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sago manufacturing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'Sri Balaji Sago Factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sago manufacturing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'madda venkateswarlu', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYANA SALT INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DUVVURU SALT TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SUMANA SALT INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RAMARAJU SALT INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Maddela Nagabhushanam Salt Works', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bharath Salt Refineries Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '73']
[' Industry Name ', 'SAMANTHULA VENKA REDDY salt industry', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'pakala salt factory', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sami Satyanarayana Salt Wotks', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Adinarayan Reddy Salt Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'prabhakara Raju salt industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'varunraju Salt industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MURALI MOHAN SALT INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SALT MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri vijaya durga industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SEED GRADEING SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISWAK SEED CARE', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SEED GRADEING SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VICTORY SEEDS PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SEED GRADEING SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NATIONAL BIO SEEDS CORPORATION', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Padmavati seeds', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVRSS processing unit', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gourmet Popcornica LLP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '39']
[' Industry Name ', 'ASIAN SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PULLA LSCS SEED PROCCESING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHIRI AGRO TECH PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'NUZIVEEDU SEEDS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'MANI KIRAN SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'ALAPATI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Tanuku Consumer Cooperative Stores Seed Processing Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PAVAN AGRO AGENCIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PRASAD SEEDS PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '32']
[' Industry Name ', 'Kaveri Seed Company Limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MOUNICA SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA LAKSHMI SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SUCHITRA SEED PROCESSING', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri sitaramanjaneya brahmanagudem farmers seed society Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'harita corn conditioning unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'kaveri seed company limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KMR SEEDS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'NUZIVEEDU SEEDS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI MITRA AGRI SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KANAKADURGA SEEDS EXPANSION 1', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRADHAMANANDI SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'harinath crop genetics private limite', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOUNICA AGRO SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'RAMAKRISHNA SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NAVEEN SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Ms Sri Naga Venkateswara Traders New', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Venkateswara agro tech', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Babburi industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Nalanda hybrid seeds', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANYAKA PARAMESWARI SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ULTRA SEED TECH INDIA PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'sri sathya sai raithu mutually aided cooperative fedaration limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KURNOOL SEEDS PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VARALAKSHMI SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Grandhi Chalamayya Seeds Business', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Kanamma Decorticator', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MITHRA SEEDS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'Chandrasekhara Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA GROUNDNUT PRODUCERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Nagarjuna seeds', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai ganesh seeds', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'DEEKSHITHA SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sharad seed processing unit', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURALIDHAR SEEDS CORPORATION', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KIRAN SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'EAST COAST MARINE PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Shrimp Feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'Veerabhadra Exports Private Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'LOTUS HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Uniloids Biosciences Pvt Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '30']
[' Industry Name ', 'Sri Surya Hatcheries', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KALESHA SEA FOODS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AQUATICA FROZEN FOODS GLOBAL PVT LTD', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '166']
[' Industry Name ', 'AISHWARYA IMPEX', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SHRIMP PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '38']
[' Industry Name ', 'KEP PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS I K EXTRACTIONS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SOLVENT EXTRACTED OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'ANGAN FOODS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SOLVENT EXTRACTED OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '34']
[' Industry Name ', 'KANAKADURGA AGRO OIL PRODUCTS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SOLVENT EXTRACTED OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '49']
[' Industry Name ', 'Sri Nagavali Solvent oils Private Limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SOLVENT EXTRACTED OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'SRI BALAJI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'soya chunks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Radhika Flour and Chillies', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHUSHI INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'venkateswara flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Anasuya flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pushpa Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NANDINI SWAGRUHA FOODS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GOVINDA REDDY FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B NARAMMA  FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALA VEERAYYA MILLS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI FLOUR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Eswaraiah Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P JEMS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HUSSAIN BASHA FLOUR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'WET GRINDING MACHINE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding (> 20 HP motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Keshto Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding (> 20 HP motor)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'REVANSH FOOD PROCESSING INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Spice grinding (> 20 HP motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ravindra Masala Mini Industry', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Surya Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Anjaneyulu chilly grinder', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Sayad Basha', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'UJJAINI FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI KANAKA DURGA INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Haripriya food products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIRI AGENCIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES PACKING UNIT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chandana Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES PACKING UNIT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PADMA PRASAD FOODS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES PACKING UNIT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVALINGAM FOOD INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES PACKING UNIT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sriyasaswi cashew processors', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'STARCH CHIPS PREPARATION', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYA TULASI FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Steeping and processing of grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijayalakshmi engineering works', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sterilization of Horticulture and Non horticulture Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'EID Parry India Limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sugar Industry', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '315']
[' Industry Name ', 'SNJ Sugars and Products Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sugar Industry', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '412']
[' Industry Name ', 'The Andhra sugars limited sugar unit 2', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Sugar Industry', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '252']
[' Industry Name ', 'CNR TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TAMARIND PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M K B SONS COLD STORAGE', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TAMARIND PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'TARAKA PRABHU TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tamarind Seed Kernel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI BASAVESWARA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tamarind Seed Kernel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI GANESH INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tamarind Seed Kernel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'MKB INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tamarind Seed Kernel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tamarind Seed Kernel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mayuri Assam Tea Powder', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tea processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'kvg tea company', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tea processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Surya Foods', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Tea processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Swarna Spices Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri ramagayatri turmaric Industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nano sri', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri laxmi narayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahalaxmi traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Triveni turmerics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sahiti turmeric processing and agro processing unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri sai Shankara traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Dada Saheb Turmeric Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Turmeric Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'satyavati flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Sai Vijaya shankara bala kankadurga floor mil', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Venkateswara floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J R Agro products', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'janardhan rao grain millers', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BKR grain millers', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramadevi grain millers', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkatadurga flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kota durga grain millers', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DATTA SAI TURMERIC MILLS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Poosarla Someswara rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA KRISHNA RICE AND FLORE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Avthar Meharbaba Floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'TURMERIC POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'K K CORPORATION', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE GHEE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRK Parishudh Dairy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE GHEE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri lakshmi industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE GHEE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '24']
[' Industry Name ', 'Srihitha Refineries Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE OIL REFINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'CHIPPADA MARIDAYYA', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE OIL REFINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'OILMILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE OIL REFINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SEETHARAMA OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE OIL REFINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI MEENAKSHI OIL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'VEGETABLE OIL REFINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Coastal solvent oils India pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable Oil refining excludes solvent extraction', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '25']
[' Industry Name ', 'srinivasa cotton and oil mills pvt limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable Oil refining excludes solvent extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '165']
[' Industry Name ', 'SRI RAMAKRISHNA GINGIN OIL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable Oil refining excludes solvent extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Venkatraman oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable Oil refining excludes solvent extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kameswarao oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable Oil refining excludes solvent extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MURALI KRISHNA MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable Oil refining excludes solvent extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'COROMANDEL AGRO PRODUCTS AND OILS LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable oils including solvent extraction and refinery / hydrogenated oils', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '155']
[' Industry Name ', 'Sri Ratna pure oil', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable oils including solvent extraction and refinery / hydrogenated oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara oild and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable oils including solvent extraction and refinery / hydrogenated oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable oils including solvent extraction and refinery / hydrogenated oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAXMISRINIVASA FLOUR AND OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable oils including solvent extraction and refinery / hydrogenated oils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHAUDHARY EDIBLES PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Vegetable oils including solvent extraction and refinery / hydrogenated oils', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'Ramana Oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ADAMMA OIL SURVICING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'coconut oil expeller', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani flour and oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ayyappa mini oil mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Virgin coconut oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S N AND SONS MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WAREHOUSE AND PADDY PROCESSING UNIT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'VEDAMATA INFRA PROJECTS PVT LTD', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WAREHOUSE AND PADDY PROCESSING UNIT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Subramanyaeswara Binny rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WAREHOUSE AND PADDY PROCESSING UNIT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI DURGA BHAVANI DRINKING WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SMG COOL DROP PACKAGED DRINKING WATER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANTHOSH WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI RAJSANKARAM ENTERPRISES VIZIANAGARAM', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'waterplant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI SIVA GAYATHRI  WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NTR Sujala Sravanthi WATER PLANT Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SLV PURIFIED WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SAHASHRA MINERAL WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijayalakshmi aqua', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree ram waters', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vysaakhe Purified Drinking Water Plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GAYATRI WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Mythri water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree lakshmi venkateshwara water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bab water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HIMALAYA PURIFIED DRINKING WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Naga Vajra Jyothsna Charitable trust', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi Water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI PRASANNA RO COOLING WATER PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SANTOSHI MATHA WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri ramalingeswara water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGA GANAPATHI MINI WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA MINERAL WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'viswanadham charitabul trust', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayam water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'POPURI FOUNDATION WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallireddy water supply', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAVANI AQUA MINERALS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HARSHITHA WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'NEELADRI AQUA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'suguna water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K R INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'praja seva samaj', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Usha Aqva Industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER TREATMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA DHEEP WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER TREATMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R S WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER TREATMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Keerthi purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER TREATMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREEVARI COTTON INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANIKANTHA COTTON COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'AGRO INDIA MILLS', ' District Name ', 'Krishna', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA VENKATA SAI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAHAJANANDA COTTONS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANJANEYA COTTON TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Pranathi Cotton Traders', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri veerabhadra ginning mill', ' District Name ', 'East Godavari', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SLR COTTON GRINNING  MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Varun seeds  and seeds process', ' District Name ', 'Krishna', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASUKI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nandi cotton ginning mill pvt Ltd', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'MS SRI VENKATESWAR LOTTERY FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANA GINNING MILLS', ' District Name ', 'Krishna', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUCHARITHA COTTON COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'lakshmi srinivasa traders', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Aiswarya cotton mill', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganesh Ginning Factory', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SOUNDARYA COTTON INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRAVANALAKSHMI SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri mahalakshmi ginning and processing', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS AISWARYA COTTONS', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'SREEVARI SURGICAL COTTON INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PSR COTTON GINNING  PRESSING INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KRISHNA COTTON INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '26']
[' Industry Name ', 'SRINIVASA COTTON TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MURALI COTTON PRESS', ' District Name ', 'Anantapur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTESWARA AGRO PROCUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VEMPARALA VENKATA RAO COTTON INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE BALAJI COTTON MILL', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HARI HARA SPIN COTT', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA SAI PRESSING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'CHAMUNDESWARI COTTON TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'JAI SRI RAGHAVENDRA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '50']
[' Industry Name ', 'SRI VENKATA SAI TEJA COTTON GINNING MILL', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA SAI TMC SYNDICATE', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'JAYA COTTON PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AJ SONS', ' District Name ', 'Chittoor', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SRI VIJAYA VENKATESWARA COTTON MILLS PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VIJAYA CHAITANYA ENTERPRISES PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'VAMSI KRISHNA COTTON MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VAMSITRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MADDI HANUMAN SEEDS GINNING   AND PROCESSING PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'BCG COTTON GINNING AND PRESSING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KALLAM BROTHERS COTTONS PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI BYRAVESWARA GINNING MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi Cotton Mills Private Limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHIRDI SAI COTTON GINNING MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI MOHANA COTTON INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'VAMSADHARA COTTON INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BALAJI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Siva Sankara gunny traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai traders', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'SREE VIJAYA GINNING AND PRESSING FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PREMIER SPINCOT', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri srinivasa pressing company pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'NERELLA SWAMULU COTTON PRESSING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'POORNA PRESSING INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SREE TIRUMALA COTTON TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'saaketh ginning mill pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'sree ganesh pressing factory', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Mahalakshmi cotton ginning and pressing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri MVR Cotton Oil Mills Private Limited', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA KRISHNA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI MURARI PAVAN AGROTECH', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI COTTON GINNING MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SWATHI COTGIN TMC PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'VIJAYA SRI COTTON GINNING MILL', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI GANAPATHI COTTON MILL', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SRI LAKSHMI SAMBASIVA COTTON MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Chenna Basaveshwara Cotton Ginnng Factory', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMICOTTONTADINGCOMAPNY', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '39']
[' Industry Name ', 'PARAMESWARA COTTON MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Shantha Malleswara Ginnng and Pressing Factory', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SRI SADGURU SAMBASIVA GINNING AND PRESSING FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NAGENDRA GINNING FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DHARMENDER GINNINGS', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'DHARA SREE GINNING AND PRESSING FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Basaveshvwara ginning and pressing factory', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'SREE BHAVANI GINNING AND PRESSING FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'Venkateswara Glass House', ' District Name ', 'Guntur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARUPVC', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharath plywood and  glass', ' District Name ', 'Anantapur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri guru sai glass and frames', ' District Name ', 'Prakasam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Denesh laminates', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri jaya glass and ply wood', ' District Name ', 'Anantapur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'live life glass concept', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'lorvin glass solutions', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Lorven UPVC Products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'fb glass house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA DURGA TUFF GLASSES', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'samarpan glass works', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SSNJ UPVC  FABRICATORS', ' District Name ', 'Prakasam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SK GLASS WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RUPA UPVC WINDOWS AND DOORS MANIFACTURERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Royal Heat Maker Industry', ' District Name ', 'Chittoor', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Architectural Glass Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Simhapuri Industrial and Medical Gases', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic colour manufacturing (not using boiler and wastewater recycling process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sudha Somany Ceramics Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '137']
[' Industry Name ', 'KAJARIA TILES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '139']
[' Industry Name ', 'SIRAZEE TILES PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'M T C TILE CARE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI KRISHNA PARKING TILES', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SILICA CERAMICA PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '251']
[' Industry Name ', 'satya stone tiles industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ']
[' Industry Name ', 'VIJAY AGENCIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'modulo ceramics pvt lmtd', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'OME AGENCIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'AMEER ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SHARADA REFRACTORIES AND TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SRI VENKATESWARA STONE WARE PIPES COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SIRAZEE SPRAY DRY INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SRINIVASA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'ASSOCIATED COASTAL CERAMICS', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'VIJAYA DURGA REFRACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Chaitanya Chemicals', ' District Name ', 'Kadapa', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'KUNKULLAMMA REFRACTORIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Minca Calcination Private Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Dinesh  industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Greentec UPVC Solutions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SUDHARANI CERAMICS AND REFRACTORIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'shoghi engineers', ' District Name ', 'Anantapur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Decoration of ceramic cups & plates by electric furnace', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'bhavani enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Fibre glass production and processing (excluding moulding)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI BALAJI OPTICALS SURFACING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Fibre glass production and processing (excluding moulding)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHERKHAN AUTO GLASS WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Fibre glass production and processing (excluding moulding)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KARUNAKAR GAS WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Glass ampules & vials making from glass tubes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri raghu glass works', ' District Name ', 'Srikakulam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Glass ampules & vials making from glass tubes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HINDUSTHAN ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Glass ampules & vials making from glass tubes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIMHAPURI PLASTICS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'R N PHOTO COATINGS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'G K CEMENT PIPES AND CERAMICS', ' District Name ', 'Anantapur', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'M S R INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Bhavya Designer Tiles', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Surya Lakshmi Designer tiles', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'cemtech tiles and pavers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'LAMBODAR DESIGNER TILES INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SCONE CERAMICS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'R G CON  DESIGNER TILES', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'Sri RamaKrishna Glass works', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacture of mirror from sheet glass', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MARUTHI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacture of mirror from sheet glass', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA UPVC WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacture of mirror from sheet glass', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'OM Glass N ply industries Pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KVR ASSOCIATIVES', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Triveni Pattern glass pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Glass works  Aluminium frames', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S D M GLASS AND RUBBER INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'harika glass fitting works', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Glass Processing Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NIRMALA ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'Siva Sakthi Hardware Ply Wood and Glass', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bvs glass and rubber traders', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of Laminated Glass', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri sai manikanta enterprise', ' District Name ', 'Srikakulam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of Laminated Glass', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI JAGANMATHA UPVC DOORS AND WINDOWS', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of Laminated Glass', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'vizag glass world', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Manufacturing of Laminated Glass', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA GLASS WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Optical lens Cutting & Grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AH OPTICIAN WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Optical lens Cutting & Grinding', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVI OPTICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Optical lens Cutting & Grinding', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ONGOLE PACKING INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'MAHALAXMI GLASSES', ' District Name ', 'Guntur', ' Sector Name ', 'Glass & Ceramics']
[' Industry Name ', 'SRI VIJAYA DURGA BUILDING SOLUTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Durga malleswari glass works', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkata rao photo frame works', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai bhavani glass amdvaluminium frame works', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S  V   TUFFON', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'ALEKYA GLASS WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BL TUFF GLASS', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'GAAP TUFF GLASS LLP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '49']
[' Industry Name ', 'PRAPITHA SAI AGENCIES', ' District Name ', 'Guntur', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'TOUGHENED GLASS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Ms sri lakshmi srinivasa slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRII GANESSH GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'ASN GRANITES', ' District Name ', 'Krishna', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkata Sai mineral', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS vijaya granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'kesava slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amrutha slab industry', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAHEEN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '35']
[' Industry Name ', 'S R CONSTRUCTIONS COMPANY', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'Sri Pavan Rocks', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri veranjaneya graints', ' District Name ', 'Kadapa', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RATNA GRANITES', ' District Name ', 'East Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sudheer granite metals', ' District Name ', 'West Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'kalyani enterprises  vsez', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Meghaladevi Granite', ' District Name ', 'West Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri sai Krishna stone crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SR STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI BALAJI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Akhil Cement Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI MANIKANTA STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Raja Reddy weighing bridge', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANVITH MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'N V EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATA SAI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KISHORE SLABS AND TILES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'KUMAR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BISMILLAH GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SIMHAPURI STONE CRUSHER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MASTHAN STONE WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhavitha Granites Home', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'prashanthi slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'PRIYANKA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SARASWATHI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'venkateswara granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI NAGAMBIKA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Sri Anjanadri Exports', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KING GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SWATHI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAI TEJA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SLNS STONE', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'mohit granites', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Shree charbhuja Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Bhavani granties', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI GANAPATHI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'KSR GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI HANUMAN GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA KOTI RAMADHOOTHA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI CHOWDESWARAMMA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VEERANJANEYA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VINNY GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SREE BALAJI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'ASEXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'SRI VENKATA SAI LAKSHMI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NEW VENGAMABAGRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'PANINI GRANITES PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MS PRABHATH GRANITE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'GOWRI SANKAR GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'VENKATA RAMANA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SIVA BHASKAR  GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'K S R EXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHAKRESHI GRANITE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'ANJANEYA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KAVERI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI NIDHI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI DHANA MURTHY  ANKAMMATALLI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Vinayaka Granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SUDHADARA GRANITE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'BALAJI GRANITE INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vijetha granite exports', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Viswambhara Granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MS EASTERNKING GRANITES PVT LTD', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Ramanjaneya Granite Industries', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAMANJANEYA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Siva Sankar Sai Granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA SAI LAKSHMI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI TEJA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PUSHPA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'karhikeya granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI GANESH GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Ganesh Granites - Expansion', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NARAYAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA SLATE COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANJANA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Harsha granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI AKSHAYA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mani Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANAMPUDI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi prasanna Enterprises', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SALASAR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ms GANPATI GRANITES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAHAMAN EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'AJITHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DINESH GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYALAKSHMI INDERSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'KRISHNA SAI GRANITES INDIA PVT LTD', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '146']
[' Industry Name ', 'SRI SAI TIRUMALA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATA BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SATYA VENGAMAMBA GRANITE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'TIRUMALA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAJITHA  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENGAMAMBA  GRANITE  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAM  GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYA RAMAKRISHNA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'MARUTI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI VENKATA ARANJYOTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Surya Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VARI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VISHNU GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Msvijaya granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'VENKATA RAMANA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'CHENNAKESAVA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Surya industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SATYA SAI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Mahadeva Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VENGAMAMBA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA SIVA SAI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI GAYATHRI STONEX', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI GEETHIKA EXPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASHOK GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAI PRIYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI VENGAMAMBA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'M S SRI VISHNU SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HARIPRIYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYA MARUTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ms ANKALA PARAMESWARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'INDU GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Lakshmi Tirumala Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DIVYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'bindhu transformers', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KKN GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI GAYATHRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRS ROCKS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Dhanalakshmi Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'DEEPIKA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VALLURAMMA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI HANUMAN EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ASMA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MS MAASTER GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI RAM INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SHRIJI INTERNATIONAL', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri sai KLR granites', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMI VENKATESWARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARI KRISHNAA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI GAYATHRI INDUSTRIES          PARTNERSHIP FIRM', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SUBHASRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI SRINIVASA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SA AZEEZ exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri lakshmi Srinivasa granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SAI SIVA GRANITES - EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HINDUSTHAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA GRANITE POLISHING', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHALAKSHMI SAI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAJESWARI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GK GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DIVYA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SBK MINERALS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'CHAVVA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'jyothi prabhu granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'ECO STONE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BLUE ROCK MINERALS', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Jahnavi Sri Granites Expansion', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VARASIDDI VINAYAKA LAKSHMI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SPM GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'kavitha granites and exports', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'ADHI VISHUNU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VARDHAMAN STONES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Tejasri granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V S GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SHREE SHIVA GRANITE', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Jyothi Granite Exports India Private Limited', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '139']
[' Industry Name ', 'sri garudadhri granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SR V JAYA LAKSHMI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S S S S Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI ANJANEYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sai Maheswaari Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJA RAJESWARI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI GUTHIKONDA RAMA YOGAIAH SWAMY GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'HARSHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VEERABRAHMENDRA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GAYATRI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAJA RAJESWARI GRANITE INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA KARTHIK EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RAMANI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SIVA SHAKTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MARUTI NANDAN STONES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'BB GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANU EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramana Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOWRI SANKAR GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VARASIDDI VINAYAKA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'prasannanjaneya granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RANGA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIDDHI VINAYAK GRANITE', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SHRI SHYAM GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI GUTHIKONDA RAMA YOGAIAH SWAMY EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI NEELU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sree Subrahmanyeswara Swamy Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SHEKHAWATI  GRANITE PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Raghavendra Stones', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SIVA JYOTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAMA BANTU GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Chaitanya Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SHREE RAJASTHAN GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'KRISHNA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RV GRANITE', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI RANGANADHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MANIKANTA MINERALS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'SRI SIVA SAI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI VIGHNESWARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VAAYUPUTRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VINUTHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI GOTTIPATI HANUMANTHARAO GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Balaji Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '12']
[' Industry Name ', 'SREE SHAKTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAHADEV GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI AMRUTHA VYSHNAVI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RANGA SAI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'ANTARMANA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SHREE MAHARAJA GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'KANTHIKA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'MSSREE VISHNU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KISHORE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ORNATE EXPORT GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SUMUKHA   EXPORTERS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI GANESH GRANITES - EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATASAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'NEO EXOTIC GRANITE LLP', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI SAI VENKATA MANJUNADHA GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SHYAM MINING AND GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VIKASH GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'MEENAKSHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI BALA TRIPIRA SUNDARI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'SHRI SUNIL GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ADITYA STONE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI RAVI TEJA SLAB POLISHING INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VASAVI SLABS  TILES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'yalavarthi granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'RAINBOW ROCK-MIRRORS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'THRIKOTESWARA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Uma maheswara stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SAMBASIVA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GIRI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'AVIKA GRANITES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MCRN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'OM GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'S R M GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'AKHILA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KONDAVEETI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SALASR GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SHIRIDI SAI BABA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vidya granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALANAJANEYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PRABHAVATHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SALASAR BALAJI GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SAI SUDHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VEER HANUMAN GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI KUMAR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KRUTHI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HEMA SAI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Stone Arts', ' District Name ', 'West Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANIKHANTA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PANKAJ  GRANITE', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SHANTINATH GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KRUSHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI ROCKS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANJAY ROCKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'VEERANJANEYA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JMB ROCKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAFA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS RITHVIK GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SVG EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SRI KUNDHU EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SANDHYA GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOUNISH INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'KRR  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VRUSHABHAADRI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SUDARSHAN GRANITES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MOKSHITHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARIKA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS BHAVANI GRANITES EXPANSION', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI PRIYA TIRUMALA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAVAN EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'UMA GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'GOVIND ROCKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI GRANITES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'padma granites and exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MS GEETHA EXPORTS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ELIEZER MINES PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Navayuga Exports limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ERA GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'TIRUMALA GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'RM EXPORTS', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VS GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MSSREE CHANDRAVADANA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EVERSHINE GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS SIVA JYOTHI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'A-1 INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Honey sunny exports', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vigneswara Granites', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'S S V GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'PAVAN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHAKTHI GANAPATHI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S L N S GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VENKAT CHARAN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Cynthia Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKAT SAI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE GEETHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GKS GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI GRANITE  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ratna Mineral Enterprises UNIT-1', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'bhavani granite exports', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BHIRAVA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KALIMA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'rehana granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARUNODAYA GRANTECH PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MITHRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkataganesh granaites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'star granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sapthagiri Granites and Slates', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA STONES INC', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '34']
[' Industry Name ', 'VIJAYA TEJA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PRASANTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Srinivasa granaites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRIANITHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Eswari Granites  Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sai sri granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI SRINIVASA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Saraswathi granites', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Jamuna Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MOUNIKA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Vijaya Chaitanya Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'PARVATHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jasmine Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MASHA ALLAH EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SOUTH INDIA GRANITE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE LAKSHMIVENKATA SAI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri raviteja granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE VARASIDDI VINAYAKA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VEERANJANEYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'indian rocks', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '17']
[' Industry Name ', 'MS SRI RAJA RAJESWARI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'CMU GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHAMBHAVI GRANITE INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'GHANANATH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI SONU GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MSNEW SUMS GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SIRI FOUNDATION YENAMADALA', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'SRI SRI SRI LAXMI VENKATESWARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIDYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HIBA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI BANKEY BIHARI EXPORTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Sri Lakshmi Ganesh granaites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VINAYAKA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS H B F GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'KRK GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HIRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRI SREE LAKSHMI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIDDARTHA GRNITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'RESHMA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VALLURAMMA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS SVH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Maa Ambika Granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NANDI GRANITE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SREE RAM GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ANURADHA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS TARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Harish Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AMARNATH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SODANAPALLI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANJANADRI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI HANUMAN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RESHMA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SUMITHRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI RAGHAVENDRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SIRI STONES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VIS0HNU GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE DINESH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SREE LINGESWARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHRI RAM GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI JOYTHI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'DNR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS KBN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'lakshmi narasimha Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIMHADRI GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KRISHNA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS NAVATHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijay Sai Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'SRI VISHNU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R S GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIDDARTHA QUALITY GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MSSREE PRAVEEN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE CHOWDESWARI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYA TEJA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS PARVEEN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI ACHYUTHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEEPA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE SAI AMBIKA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'SREE SIVA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'SAI TEJA WATER SERVICE', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '53']
[' Industry Name ', 'SREE SRINIVASA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI MALLIKARJUANA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ms rohit granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI CHOWDESWARAMMA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'SRI PAVAN RAGHAVENDRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'mS JAI RAM GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI SHIREESHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE SURYA ANJANEYA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANJANIPUTRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUJATHA  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'YUVARAJU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NIKITHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIDDI VINAYAKA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI TIRUMALA EXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'S K J Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI SUDHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE SAI SIVANI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DEVI SRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai Deepak Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'inturi granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree ranga sai Ganapathi granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI BHEEM granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GANGA GAYATHRI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GOKOOL GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gayathri Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ms Mustafa Granites', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'gayathri granites08', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SAI VIJAY GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI SREENIVASA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE KRISHNA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Jaya sai granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI NARASIMHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kanyakaparameswari granites and export', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'HARISH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HIMA BINDHU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE THIRUMALA ROCKS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'UNIVERSAL GRANIMARMO PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'JALEEL GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Jasbir Impex and Traders Pvt Ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI SREERAMA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'EVERSHINE GRANITE EXPORTS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'sai polishing unit current', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'EVERSHINE GRANITILES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'HARITHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYA KRISHNA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PSR GRANITES EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DEVI GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS PRATAP GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ASS EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LASYA PRIYA  GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'ashik exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI VENKATESWARA GRANITE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI THIRUMALA SAI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI VARNIKA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE RAM EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GAYATHRI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Baba Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KAPIRAJU GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VARALAKSHMI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREERAM GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MSSREE LAKSHMI NARASIMHA SWAMY GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GAYATHRI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS PUJITHA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VIJAYA SREE GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI MADHU SRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYALAKSHMI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'TIRUPATHI GRANITE', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'VIJAYA LAKSHMI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI PARAMESWARA GRANITES EXPORTS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ASR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MSSREE UDAY SHANKAR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka Granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS B V L GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI VASAVI GRANITE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISHAKHA GRANITE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S K P GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'NARASIMMHARAJU GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SS GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CHAITANYA  GRANITE  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'APPLE STONES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Lakshmi granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS SURYA NANDI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI NAGA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'arjun granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'MINERVA  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'SRI GOWRI SANKAR GRANITE INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Zenith granite shilp', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARSHA NANDINI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'Ashok Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYA SIVA SAI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Tirumala Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VAISHNAVI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI BALAJI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BARGAV EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'MAHALAKSHMI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'SRI MARUTHI GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Bhargava Granite', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MS  SAMEER GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'MAHESWARI EXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANKAMMA TALLI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATADRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAI GANGA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI AYYAPPA EXPORTS - EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VISAKHA GRANITES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SNR EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'MAA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAMBA SIVA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE HITHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shree sampat Vinayak granite', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIVA PARVATHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI HARIKA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAMANA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SUBRAMANYESWARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA LAXMI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PRANEESH  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEW LAKSHMI VENKATESWARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS   SAMATHA  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Pavan Sai Industries Expansion', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SNEHA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'S V S GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Y N R GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MSVASANTHAM GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kishore Granites Private Limited - Expansion', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'SAI PRIYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AAEMVEE GRANITES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'HIND GRANITES PVT LTD', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '15']
[' Industry Name ', 'RAGHURAM GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI  NARASIMHA  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS STAR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MSAMAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree raghavendra granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B R GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MANOGNA EXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'RANA DHEER GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAVI  KUMAR  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AH Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI VINAYAKASWAMY GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PRAJWAL GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEELIMA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI TIRUPATHAMMA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M S ROCKS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sir Lakshmi slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAVYA GRANTIES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BABA  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SARVASIDDI VINAYAKA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SANDHYA STONE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMACHANDRA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI PEDDAMMATHALLI GRANITES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DEZIRE STONES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI SAI RAVI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VEERA HANUMAN EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI  PADMAVATHI  GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI GUTHIKONDA RAMA YOGAIAH SWAMY GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BSR GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HANUMATH NARAYANA SWAMY GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VELMURUGAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL IMPERIAL GRANITES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MONUMENTAL MEMORIALS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '49']
[' Industry Name ', 'SREE RAVI SANKAR ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ajith Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'ESWAR EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE HARI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YASWANTH SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'STONE INDIA MONUMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Karthikeya Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'SPT GRANATES AND EXPORTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'B SQUARE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUBHAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIRDI SAI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREEKANTH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VARNA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIVA SAIRAM EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KISHORE STONES  EXPANSION', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SAHASRA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'VARNA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SVSS MINERALS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS VANI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GAYATHRI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIVAPRIYA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI GAYATHRI  INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ABHAYANJANEYA GRANITES AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SUJITHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMALINGESWARA GRANITE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI TIRUMALA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Maruthi Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'A1  PAVAN  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MURARI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI ANJANEYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE SURYA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Siva Sai Granites  Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SURYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI KRISHNA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE VENKATA GANESH GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOUSE E SAMDANI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ishitha Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ANNAPURNA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SAI CHARAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K K GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAVI SANKAR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMI SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'GREEN LINE GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'GARUDA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA GANESH GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NAAZ GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KOTESWARA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'VAJRA GRANITES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SOWMYA GRANITES EXPORT S', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'siva nandi granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEELAVATHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'shoba stones', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SREE LAKSHMI CHARAN  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANITHA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CHARITHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'VENKATA SAI AKSHITHA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SHREE GANAPATHI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'EVERSHINE MONUMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '34']
[' Industry Name ', 'TEJA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ms  JATHIN EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'LINGESWARA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'CHANDRIKARANI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KM GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dhanalakshmi Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siri Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Galaxy Grandeur  - Expansion', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SHRIYA MINING INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI JAYANTHI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS VNR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SREENIVASA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI PEDDAMMATHALLI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREEKANTH SLATES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sindhu Minerals', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VISHAL GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATADRI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI ADITYA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NANDINI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE RAVI SHANKAR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri haripriya granites unit ii', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SAI GANGA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'veera hanuman granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SARADHA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Vikhyath Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SRINIVASA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOWRI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JEETHENDRA  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANJANI GRANITE EXPORTS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS CHERANVI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS RAMU GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Maatha Sri Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'ASHOK GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SURYAM GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vighneswara Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE LAKSHMI VIGNESWARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MAMATHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANUDEEP GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARASIMHA GRANITES - EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI BHAVITHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Murali Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'KANAKA DHARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ASRITHA GRANITES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SREE LAKSHMI NARASIMHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ANJALI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KRISHNAVENI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI KAKATHIYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SREE VINAYAKA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VISHNU GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SURYA ROCKS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Lakshmi Gayathri Granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S S GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI ADILAKSHMI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jai Veera Hanuman Granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SAI NANDI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAYATHRI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA TEJA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'UNIVERSAL STONES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PREMA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ALEEF  STONE TECH EXPANSION', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'HANUMAN EXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SREE MUKHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MSSHAHEEN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI JYOTHI ROCKS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SS Exports Unit - II', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'S B GRANITES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MADAR GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PRAKASH GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HAIMA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BAHAVYA GRANITE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anand Granite', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MADHURI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATA JANA SAI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Prasannanjaneya Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'LAKSHMI ANUPAMA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SUPRIYA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SIRI GRANITES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATESHWARA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VYSHNAVI DEVI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'KRISHNA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'HEMADRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SURYA TEJA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI GRANITES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAKTHY GRANITE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'PENNA GRANITE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI SANDHYA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'KRUPA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI KUMAR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GKR EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATA SAI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA SUPRAJA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA SAI GRANITE', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AMBATI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M S GRANITES AND EXPORTS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'HARIKA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI SUJAY GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LEELA KRISHNA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAI VENKATA KRISHNA READY MIX INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '29']
[' Industry Name ', 'SREEVANI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MS MANJULA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Sai Bangaru Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SN Granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'amulya granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI VARASIDDI VINAYAKA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'SKVALI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'DIVYA SREE GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATESWARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'MAHBOOB SUBHANI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'DEEKSHITHA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SESHADRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATA VYSHNAVI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SAI KARTHEKEYA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KAMEPALLI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VASAVI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI RAM EXPORTS EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'DHULIPALLA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI HARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ADILAKSHMI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Gayathri Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SPLN GRANITES EXPANSION', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'AKHIL GRANITE EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA KRISHNA EXPORTSEXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Archana Exports', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AMRUTHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MSUDAY GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree balaji granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAAJARAM  INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'SWASTIK GRANITES UNIT II', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'K V REDDY  GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEKHAR INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARI JYOTHI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS J P ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS SREEVARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SIRI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'CHAITANYA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'OHM SRI VENKATESWARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Raghavendra Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'STONE PLUS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAKETH EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Chaitanya granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS IQRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S B GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ARUNODAYA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NATIONAL GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS SRI VENKATESWARA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Sai Raghava Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI BHAKTHANJANEYA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MOUNIKA GRANITE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'MEGHANA SREE GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MADURASRI GRANITE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'RL GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA KRISHNA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MS STONE STYLE', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MANASA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SAI  INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI JAYADEV GRANITES  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SWATHI   GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI TULASI GRANITE AND EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI HARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SVRGranites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'RAM GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ASHA JYOTHI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SHAMANTHA GRANITES  EXPORTS', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'LATHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Mahendra Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'R R  EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'SRI HARI PRASANNA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Raghavendra Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', '7G STONE EXPORTERS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'MSNEW PARAMESWARA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIGNESWARA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS  AKSHAYA  BHARATHI  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE ESWARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'THE CHITTOOR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'OM BHAIRAVA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SLNMGRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARAA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RAGHAVENDRA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sree  uma maheswara granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SLN GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'MS S G GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI RAVI SLABS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SHANMUKHA SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MSSREE JAYA DEEP GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R M GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI TULASI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRi Gurudattha Granite', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI RAANI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'GANAPATHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri venkateswara granites', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KGN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P V GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Hill stone granites pvt ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI LAKSHMI SAKUNTHALA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI RANGA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI NARASIMHA SWAMY SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARGAVI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SAI KRISHNA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VISHNU PRIYA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'NAUSHAD GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAVANAPUTHRA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'DADA GRANITE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI GANAPATHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AP GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DHARANI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri Gayathri Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ARCHEAN INDUSTRIES  PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'VENUGOPAL GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Vani granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'MS PAVAN PUTRA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI  RAJA RAM  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GAYATHRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VANAMALI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SAI BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'QUALITY GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE SIDDI VINAYAKA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SINGAM GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JAI HANUMAN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATESWARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ARKA EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Virat Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'GAJANANA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PNR Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Thirumala granite', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GANGA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MSSREE KUNDANA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AP ROCK GRANNIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Rayas Granites', ' District Name ', 'Kadapa', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE PAVITHRA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S A M S GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUVERA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Sri Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS DEVI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'NANDI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS SV GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KUPPAM GRANITE FACTORY', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'KAVERI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BHAGYA LAKSHMI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS  PRASANTHI  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJA RAJESWARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAFA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SREE VISHNU INTERNATIONAL', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SURYA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajeswari Granites', ' District Name ', 'Kadapa', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS LEKHA SREE GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE KAVITHA EXPORTS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KRUTHIK ROCKS', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI TEJA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI DURGA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SASI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'J P GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'M S DEVI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HARSHA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'THULASI SREE GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI GRANITE', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Jyothi Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'GAYATHRI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VKN GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NAVAYUGA STONES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'SRI THIRUMALESWARA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI EXPORTS', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI HARICHANDANA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mahalakshmi Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BABA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sireena rocks private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'JALADURGAM GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SANDHYA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'GOVINDA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'CHAITANYA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Granite Pvt ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'K C GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Balaji Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SHREE AMMABHAGAVAN GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI NARAYANA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ARUNA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI LATHA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bindu granites', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI VISHNU GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SLV GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS SUDHARSHAN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NARAYANADRI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SIVA GAYATHRI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA FAKRUDDIN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ms  sri gouri sankar granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SAI PRANEETH GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'MS SRAVANA GOURI GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VN GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REDDY  REDDY GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GADDAM GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THRIVIKRAM GRANITE EXPORTS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS JOUHAR GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'raja granites', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SLVVGRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS  SHANMUKHA  GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MSSREE LAKSHMI VINAYAKA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'limras enterprices', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SOWKHYA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VIJAY GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MSSIDDARTHA GRANITES', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'aaa granites', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'City Granites', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUBAN POLISHING UNIT', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE SATYANARAYANA MARUTHI GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SANJEEV GRANITES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Limra industries', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Granites', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MALLIKARJUNA POLISH SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'devi granites', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAFOOR SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siva Sai mini slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DURGA SPION PIPES INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Mallikarjuna Granites', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai Sravan Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sree Veerabhadra swamy granite', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Manjula slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shanthi slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri lakshmi Venkateswara', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara polishing unit', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DIVYA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HARSHINI POLOSHING UNIT', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHITA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA SAI GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI SAI SLAB', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KANAKAMAHALAXMI GRANITES EXPANSION', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'DHARANI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'ARVICON INTERNATIONAL A UNIT OF ARVIND CONSTRUCTION CO PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'GOKUL GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MALLESWARI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE RR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NASA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Tulip Granites private limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'sri venkata Siva Durga stone crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI DIVYA MINERALS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri siva durga stone crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'RAMYASRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Pooja enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAPPHIRE BLOSSOM ROCKS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ruby Granites', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SMV GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'OMKAR GRANTIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Swarna Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'N K R STONE TILES INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S L D GRANITES EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREEJA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Hanuman Sri Minerals', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARA GAYATHRI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MS GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS YAKSHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kancharla Venkat Rao', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TAJ SLATES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE POLISHING ABRASIVES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE BALAJI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE POLISHING ABRASIVES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LOTUS ABRASIVE TECH INDIA PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE POLISHING ABRASIVES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Jani fancy power tools', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE POLISHING ABRASIVES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SNEHA DIA ABRASIVESEXPANSION', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE POLISHING ABRASIVES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Srinivasa Abrasives', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE POLISHING ABRASIVES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'M KRISH GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VINAYAKA GRANITES NEAR C T R I  IV ROAD', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'JAI CHIRANJEEVA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Divya Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gajanand stones', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI URVIJA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SWATHI SLAB POLISHING INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MARUTHI KADAPA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KBN ROCKS', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ABHINAYA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Subrahmanyeswara Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Anjaneya slab polishing', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NITYA SREE GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sree Maruthi Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Siva Keshava policing indistries', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Slabs polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Akshaya Gou Products', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI PRABHA LIFE SCIENCES', ' District Name ', 'Prakasam', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RIT QIK HOMOEO PHARMACEUTICALS PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISHNU METALS AND HARDWARES', ' District Name ', 'Chittoor', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'FINEST AROMA', ' District Name ', 'Chittoor', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Gokul Ayurveda Pharmacy', ' District Name ', 'Kurnool', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'M S National herbal shampoo', ' District Name ', 'Kurnool', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Thanu Herbal Products', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'FORMULA ORGANICS AND NATURALS', ' District Name ', 'Prakasam', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'Venkateswara soap works', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'GIRIJAN CO OP CORPORATION LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SKYLINE HERBAL CARE', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAILA NUTRACEUTICALS', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Aharya Technologies OPC Private Limited', ' District Name ', 'West Godavari', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'iswarya beauty parlour', ' District Name ', 'Anantapur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'United oil industries', ' District Name ', 'Anantapur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Bindu industries', ' District Name ', 'Kurnool', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siri classic variety', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ACCULION INNOVATIVE SCIENCE AND TECHNOLOGY PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AISHWARYA BEAUTY PARLOUR', ' District Name ', 'Anantapur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI SALOON SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lucky 4U Exims', ' District Name ', 'Chittoor', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'HERBAL EXTRACTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'sudhama ashramam', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'herbal hair oil manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bhavani Oil Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA OIL MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KALYANI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KOLLURU SEETHA', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree thulasi industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri jaya lakshmi oil and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MURUGAN FLOUR AND OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JOYS BEAUTY COSMETICS', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIHIT LABS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS', ' Activity Name ', 'Herbal Oils', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'Sri Annapurna rice flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJYA LAKSHMI RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Rithvik Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Saraswathi Granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'VIJAYALAKSHMI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MUBAKAR RICE MILL LINGAMDINNE', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi Venkateswara modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SUGURESWARA SWAMY MODERN RICE', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MURALI NARAYANA GINNING FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'COTTON GINNING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswar Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SUPER COTTON MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Avenir Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'LAKSHMI SRINIVASA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI AMMA BHAGAVAN MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEI SARVESWARA RICE AND GN OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi mini rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi sai rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI DINESH KUMAR MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'yale mallesappa ginning and pressing factory', ' District Name ', 'Kurnool', ' Sector Name ', 'GINNING', ' Activity Name ', 'Cotton Ginning and Pressing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SENTINI CERMICA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Glass & Ceramics', ' Activity Name ', 'Ceramic Tiles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '204']
[' Industry Name ', 'SADGURU RAGHAVENDRA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAHA GUJARAT SEEDS PVT LTD', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Seed Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS AGGRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VICTORY GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA RAW AND PAR BOILED RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI VENKATA RAMANA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAISHNAVI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAC GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BALAJI RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI NAGADEVI SURYANARAYANA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARSHITHA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI DURGA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI TIRUMALA LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIVARAMA MODERN RAW  AND BOILD RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS JAGAPATHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI ISWARYAMBICA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAYANTHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'RICE MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SKML GRANATIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS AADHI VISHNU FOODS AND SPICES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'SPICES AND MASALA POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VRM GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sagar industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'WATER PLANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS VAMSI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATA SURYA GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara Granites industry', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'RAJESWARI GRANITES', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'RRINDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'sri Vasavi granites', ' District Name ', 'Guntur', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI HARIDATTA GRANITES- EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI BALAJI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE VINAYAKA BHARATHI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MAMATHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'RR GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'GRANITE', ' Activity Name ', 'GRANITE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ZEN GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'GRANITE', ' Activity Name ', 'Granite Cutting without polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHAVANI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'Expo small scale industries', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'THAMAN HERBAL PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'Sri balaji kumkumam company', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'shraman trades and industries Pvt Ltd', ' District Name ', 'Vizianagaram', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'Sivajyothi agarbathies', ' District Name ', 'Chittoor', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'CHEENNUS HERBAL IMPEX PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'S V Enterprise camphore tablet', ' District Name ', 'Kadapa', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'Sri geetanjali traders', ' District Name ', 'Prakasam', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'Sri Venkateshwara Enterprises', ' District Name ', 'Vizianagaram', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'AL ATTHARWALA GHAR   A HOUSE OF FRAGRENCE', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'INDO NAPCOP CHEMICALS LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'HERBAL PRODUCTS']
[' Industry Name ', 'ADVANCED APPLICATIONS', ' District Name ', 'East Godavari', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ragnotech solutions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'INTERNET DTP WORKS COACHING CENTRE SANDHYA INTERNET', ' District Name ', 'Prakasam', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Kirthi Xerox center', ' District Name ', 'Kurnool', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHAITANYA AGRO INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Subham Creations', ' District Name ', 'Srikakulam', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'ROSHAN NET Xerox centre', ' District Name ', 'Anantapur', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JKS SOFT TECH PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Vignan educational development society', ' District Name ', 'Prakasam', ' Sector Name ', 'IT', ' Activity Name ', 'Computer and softskill training Institute', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW REDDY XEROX AND ONLINE SERVICES', ' District Name ', 'Kadapa', ' Sector Name ', 'IT', ' Activity Name ', 'IoT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'EFFTRONICS SYSTEMS  PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'IT', ' Activity Name ', 'IoT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '725']
[' Industry Name ', 'MSM TECHNOLOGIES', ' District Name ', 'Anantapur', ' Sector Name ', 'IT', ' Activity Name ', 'IoT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Dhanalakshmi net center', ' District Name ', 'Srikakulam', ' Sector Name ', 'IT', ' Activity Name ', 'IT/ ITeS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raghavendra Printers', ' District Name ', 'Prakasam', ' Sector Name ', 'IT', ' Activity Name ', 'IT/ ITeS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sadhana solutions', ' District Name ', 'Srikakulam', ' Sector Name ', 'IT', ' Activity Name ', 'IT/ ITeS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'micro computer services', ' District Name ', 'Anantapur', ' Sector Name ', 'IT', ' Activity Name ', 'IT/ ITeS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHASHA INTERNET AND XEROX', ' District Name ', 'Kadapa', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Infra', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ELIXR TECH', ' District Name ', 'Chittoor', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Infra', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'VENKATESWARA INFRA  IT SOLUTIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Infra', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARESH TECHNO SERVICES', ' District Name ', 'Srikakulam', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Start Up', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LOMAA IT SOLUTIONS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Start Up', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '39']
[' Industry Name ', 'INZET SOLUTIONS LLP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Start Up', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANU ONLINE SERVICES', ' District Name ', 'Prakasam', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Start Up', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JASHARA SERVICES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Start Up', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Anu digital', ' District Name ', 'Kurnool', ' Sector Name ', 'IT', ' Activity Name ', 'IT-Start Up', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva Jyothi jute traders', ' District Name ', 'Guntur', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AP INDRAKUMARI', ' District Name ', 'Chittoor', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANTHERI PANNEER SELVAM INDIRA KUMARI', ' District Name ', 'Chittoor', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANJANI BAGS', ' District Name ', 'Krishna', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'MURALI KRISHNA RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AL Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'BHARGAVEE ECO BAGS PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SV PACKAGING PRODUCTS', ' District Name ', 'Kurnool', ' Sector Name ', 'JUTE', ' Activity Name ', 'Gunny Jute and Plastic bags sewing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'KGSJ COIR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'JUTE', ' Activity Name ', 'Jute processing without dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahima coir', ' District Name ', 'Srikakulam', ' Sector Name ', 'JUTE', ' Activity Name ', 'Jute processing without dyeing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SKSN JUTE TWINE INDUSTRIES PVT LTD', ' District Name ', 'Srikakulam', ' Sector Name ', 'JUTE', ' Activity Name ', 'Jute Twine and Yarn Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'MK cotton works', ' District Name ', 'Guntur', ' Sector Name ', 'JUTE', ' Activity Name ', 'Jute Twine and Yarn Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prakruthi Naturals', ' District Name ', 'Kurnool', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BATINA BAGS', ' District Name ', 'Prakasam', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SAILAJA READYMADE GARMENTS', ' District Name ', 'Prakasam', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SKANDA JUTE HOUSE', ' District Name ', 'Chittoor', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VINUTHNA LADIES TAILORS', ' District Name ', 'Krishna', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Arhan The Carrier', ' District Name ', 'Krishna', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Siva Gowri Jyothi paradesi gunny merchants', ' District Name ', 'Vizianagaram', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BASHA GUNNY DEPOT', ' District Name ', 'Anantapur', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMI GANAPATHI JUTE MILLS PVT LTD', ' District Name ', 'Srikakulam', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '41']
[' Industry Name ', 'GANESH JUTE BAGS', ' District Name ', 'West Godavari', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '24']
[' Industry Name ', 'KAIVALYA JUTE CREATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sowkhya jute products', ' District Name ', 'Krishna', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jay Enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI CREATIONS', ' District Name ', 'West Godavari', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SRI SITARAMA LAKSHMI JUTE MILLS PRIVATE LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '275']
[' Industry Name ', 'Eswara Sai Eco Products', ' District Name ', 'East Godavari', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sara Save Nature And Womens Development Society', ' District Name ', 'Kurnool', ' Sector Name ', 'JUTE', ' Activity Name ', 'Manufacturing of Jute Bags', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Venkateshwara Paper Plates', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkata rao adda leaf plant industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri surya varahalaxmi narasimha swami paper products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri suridamma industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JP INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Venkateswara traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Himashikhar Cottage Industries', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'adda leaf plates', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Srinivasa Enterprise', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'ADDA LEAVES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ARILA MANUFACTURERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'ARECA LEAF PLATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SATTAVAM ECO  WORD', ' District Name ', 'Chittoor', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'ARECA LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'HERAMBA ECO PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'ARECA LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHANDU ECO FRIENDLY PROJECT', ' District Name ', 'Chittoor', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'ARECA LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHAIK KHASIM GARRAGE', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Susmitha Industries', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'varalakshmi leaf plates industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PVK AND SONS PAPER PLATES', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree Lakshmi Vishan Agency', ' District Name ', 'Kadapa', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subbalakshmi Paper plates', ' District Name ', 'West Godavari', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai Lakshmi Meals plates', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mounika small scale leaf industries   leaf', ' District Name ', 'Krishna', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAMADENI PAPER PLATES INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LACO Paper plate industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Bala chenchamma paper plates', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Durga venilla cottage industries', ' District Name ', 'East Godavari', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASAVI SAI KUTEERA PARISRAMA', ' District Name ', 'Krishna', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sowjanya paper plates wholesale shop', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAHNAVI PAPER PLATES WHOLE SALE SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vamsinadh Enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Meghana paper cups', ' District Name ', 'Chittoor', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'annapurna paper plates', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi paper cups and plates', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Eco friendly products', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M G Munikrishna', ' District Name ', 'Chittoor', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SV MARKETING VINJAMUR', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Devi paper plates making', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi Paper Plates', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nune Chandramouli', ' District Name ', 'Kadapa', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srikanya paper plates', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI LAKSHMI PAPER UNIT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI PALAPOLAMMA THALLI PAPER PLATES', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'MANUFACTURING OF LEAF PLATES AND CUPS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI DURGA INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRUJUNA PAPER WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri mahalakshmi traders', ' District Name ', 'Krishna', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'paper plate making', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA CATERING PRODUCTS  MANUFACTURING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'karthikeya paper products', ' District Name ', 'Prakasam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN PAPER PRODUCTS', ' District Name ', 'Anantapur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sravani Paper products', ' District Name ', 'Krishna', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LEAF POINT COTTAGE INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'Manufacturing of Plates and paper cups with areca leaves', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SHREE BALAJEE POLYY RUBBER INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Footwear Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ABC Leathers', ' District Name ', 'Guntur', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Footwear Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'FX PU FOOTWEAR INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Footwear Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BIKALAPOLAMMA TRR BRAND PAPER PLATES COMPANY', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Footwear Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sarada rexin works', ' District Name ', 'Guntur', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi seat cobers', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S TATTVA EXPORTS AND IMPORTS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'KRUPA BIBLE COVERS', ' District Name ', 'West Godavari', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'OM VAJRANI FILE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'radha krishna indusries', ' District Name ', 'Anantapur', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Naidu Bags', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PUTTA SHREE LEATHERS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'AFREEN TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI DURGA ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MSR LEATHER INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather cutting and stitching (more than 10 machines and using motor)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VENUS SHOE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather footwear and leather products (excluding tanning and hide processing) (except cottage scale).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saleem Rexine works', ' District Name ', 'Anantapur', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather footwear and leather products (excluding tanning and hide processing) (except cottage scale).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NINTEEN FOURTY SEVEN INC', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather footwear and leather products (excluding tanning and hide processing) (except cottage scale).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '46']
[' Industry Name ', 'NINTEEN FOURTY SEVEN INC', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Leather footwear and leather products (excluding tanning and hide processing) (except cottage scale).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '43']
[' Industry Name ', 'dalavai ramana leather peppets', ' District Name ', 'Anantapur', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Tanneries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SADHAK SEAT CORNER', ' District Name ', 'Kadapa', ' Sector Name ', 'LEATHER', ' Activity Name ', 'Tanneries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amaravathi footwair', ' District Name ', 'Guntur', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Eswara footwear products', ' District Name ', 'Srikakulam', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi powerloom unit', ' District Name ', 'Chittoor', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A V S ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KVR FOOT WEAR', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'DEVA SAHAYAM FOOT WARE MANUFACTURING', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RSk industries', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'paduka agencies', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'AKARSH FOOTWEAR', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B K industries', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sekhar footwear', ' District Name ', 'Krishna', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Shareef Auto line work', ' District Name ', 'Kadapa', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KATARI CHIRANJEEVI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BONAGIRI VARA PRASAD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARVASIDDI RAJESH', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SARVASUDDI VENKATARAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SARVASUDDI SEKHAR', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KATARI RAVI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARVASIDDHI Eswara Rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTAIAH FOOT WARE  WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'LEATHER BASED', ' Activity Name ', 'Manufacturing of footwear', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri CVV Printer dye cutting', ' District Name ', 'Krishna', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Kanakadurga Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'HI BLUE MODULAR INDUSTRIES LLP', ' District Name ', 'Krishna', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'SRI GANAPATHI PACKING INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'santosh prabhakar carpenter works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vinayaka furnitures', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Ayesha bag industries', ' District Name ', 'Anantapur', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'NIKKIS INTERIORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SHRI OM SHAKTHI FURNITURES MANUFACTURERS', ' District Name ', 'Chittoor', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHANUKYA SLATE INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRISHIRIDI SAI STATIONERS', ' District Name ', 'Kadapa', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Medium Density Fibre and Particle Board', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAIBABA ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Medium Density Fibre and Particle Board', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'azeeziya indusries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HINDUSTAN FABRICATION AND POWER COATING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Iclean Hollow Metals Systems Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '86']
[' Industry Name ', 'Balaji roofing industry', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'welding', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nealex alloys private limited', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Arun sai foils', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Sree Siddeshwara Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alluminium Foils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KAMALA ALUMINUM ROLLING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alum Manfacturing Unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S rajarao welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Alum Manfacturing Unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHINMAYEE ALUMINIUM INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Recycling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'N R K Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Recycling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkata Siva Rama Krishna metals', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ghanushyam metal works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'LAXMI GANAPATHI METALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTA ALUMINIUM INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sunlight metal works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI RAJARAJESWARI WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'USHODAYA METAL ROLLING MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sripada Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Laxmi Metal works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kasi viswanadh metal works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Surya Brahmanandam', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Jyothi metal works', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Aluminium Utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dhanavanthari fabrication work', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SAIRAM METAL CONSOLIDATES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'GANESH FABRICATION WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AVK Steels', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raju hand drilling works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LALITHA TURNING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'anjani enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lovaraju fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'YUSUF KHATRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi narshimahaswamy tractor repairs', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGACHARI BLACKSMITH', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SSRA WIRE NETTING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Elahi welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vinayak Millers and vibrators', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK KASIM VALI BLACKSMITHY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Farooq welding', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kolimi', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANBU WELDING SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'shaikshavali welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VISHESH IRON SAFE AND FABRICATION WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI AUTO ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'k Masthan vali', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RASHID TYRE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik khasim peera', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Vamsi fabrication', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Vishwanadha Acchari Work Shop', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D Moula Work Shop', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri santhosimatha welding iron works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Jahnavi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'OM VIGNESWARA ARC WELDING', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ammajan babajan work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Devi industrial machinery and fabricators', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'ANJAN REDDY IRON WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siraj Welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kokila enterprizes', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri triveni industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NISTALA  TECHNOLIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'masthanvali  welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAHUWALA CYLINDERS PRIVATE LTD UNIT II', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Swathi Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Agro Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suneetha traders', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Geetheswara Iron Design works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kullasi gousul vara welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Kalpataru Global Alloys P Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'badanguta lakshmipati gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baala pratap gold jewellery work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Polineni Nageswar Rao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tondamanadu Pullaiah Achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ponduru gopal gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p Siva ram braham', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T VASU ACHARI gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Achary kishore', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tharni Lokesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'E NAVEEN GOLD SMITH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Muna ramu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kovuru Mohan goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kilanuru nagaraja goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bollapalli madhubabu goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kaltturu giridhar goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahakali Lakshmaih gold Smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahakali Vijay Bhaskar Goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vemuluru Raghuramaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c sarat babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'b venkateswarlu achari goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k nagaraja gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'v jayaram achari gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'u Chandra achari gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'd murali achari gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v sudhakar goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Budamagunta Srinivasulu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'a prem kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k nagabraham achary', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PEDAPALEM NARAYANA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIGRAHALA KUMAR ACHARI Gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A SUDHAKAR GOLD SMITH WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N Sankar said gold Smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kandukur Kamal kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k Siva gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'v kanakaratamachari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khajana Venkata Seshaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vaniyambadi Vijay', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p naresh gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kakavakam Munirathanam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kandukuri srinivasulu achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'banala venkateswarlu gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sadhana muthyalachari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dharmavaram rajesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gajjela Sivavaraprasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pellure Krishna goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N MALLIKARJUNA Gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R vinod', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gerikapati Rajasekhar Achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'm penchila narasimha gold Smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S murali goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ponduru murali gold Smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'n tirumala gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p Siva Kumar Goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dantham Govardhana Achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bitra ajay babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA DHURGA JWELLERY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pallipati venkatesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tapas pandit', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GEDDAM VASU', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shaik meeramohidhin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaikmastan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik shabuddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI PRABHU DIAMOND MACHINE CUTTING', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raju gold High polish', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittathuru mahesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittathiru vijaya bhanu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittaturu gowri', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittaturu siva kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chengal pattu venkateswarlu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik habeebulla', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nellore subbarao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kaniganti sankar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi rajasekhar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'akurathi ramu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'joharikapish kiran singh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri kanaka mahalaxmi', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahankali hari babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kuppili shankarRao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed sabi hussain', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittathuru prasad rao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagisetti kodanda ramaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kamakuti suresh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'peta naveen', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'akurathi lakshmi narayana', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thiruparkadal vijay', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'arani praveen', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sri sri pydimamba Jewellary works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'babu khan and sons string machines', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'duvvuru narendra', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittathuru sambasiva', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik althaf', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chathaturu sadasivam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jandyam suresh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syeed jilani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'giddanti srihari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jambulingam rajanikanth', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi lakshmaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Amirul Islam Gazi', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shiva jewellery works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohan kumar jewellery works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Silver works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chittathuru suresh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'machavaram surendra', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tiruparkadal ravi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi chandra mohan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'machavaram srikanth', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri veerabhrahmendra swamy jewellary works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'konduru mohan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'natakam dayaker gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHVS Jewellary Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik saleem gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thiravatturu sunil kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVAS GOLD SMITH WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sathivedu krishnamurthi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASUDEVARAO GOLD WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEDANTH JEWELLERY WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed jilani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'star dye cuting', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'inukoti mahesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gunneru muniprasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'duvvuru pavan kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lokku venkateswarlu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik khayum basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'satyavedu suresh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chejarla anilkumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thiruvalluru tirumalendra', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi gnanedra', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kambham prathap', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'namakari muni sekhar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'endluri chinna mastamaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik hussain basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mudigonda madhava', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'machavaram hemanth', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kodavaluru sunil kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vellore prasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik sartaj', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'daggolu munendra', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik sulthan basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kalahasthi srinivasulu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kodavaluru anilkumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'uchuru munimohan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kandukuru srinivas', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ayanakoti pradeep', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vellore lavanya', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kodavaluru ramanaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'namakari janakiramaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lebur anand kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik shahool', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yellasiri chandra sekhar achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nettella suresh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'javangala madhava', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik aslam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sada sudheer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kooja sunil', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'daggolu murali', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gandavaram giri prasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'goli mastan rao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'duvvuru ravikumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'payasam narasimhulu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik salar basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittathuru venkateswarlu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sada giri babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pellakuru sukumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gudi muni benkata subramanyam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'seemakurthi kumar achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik  nakeeb munwar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Balaji gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed khajapeer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sh mahesh gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik afroz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thiruvathuru siva sankar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK Saleem', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Y Chandracekhar gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Razak gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'panabakala venkateswarlu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk abbas gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jonnadula Venkaiah GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'panabakala ramesh babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'd prasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'muneer basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hemanth Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Gouse Basha GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik kallil basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagaram kishore', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Khadar Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'puthuru srinivasulu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik sandani', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk rabbani gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Shafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Nayab gold', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Md Riyaz Ahamed gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahimaluru ravi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'leburu vijaya sekhar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'subajit das', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik gafoor', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'puthuru gurubabu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maliga shekar babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik rafi khan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed  sameer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pachipala siva Sankar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aslam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gunti Venkatesh GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pathan sardar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'panabakala venkateswarlu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik moulim', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Munvar Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sadhana Mallikarjuna  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'House Basha Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vellore subbarao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Md grouse ahamad gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk Fayaz gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dinakar gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tanveer Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siak Fayaz gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'machavaram srikanth', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Naushad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik jaleel', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'khaja mohoddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Shakeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', '995763032502', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik dastagiri', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandragiri koteswararao gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ramu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'koteswara gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'guravaiah achari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijay Bhaskar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Siddik gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sreedhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k GameShark gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Janardhan Babu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vukoti srikanth', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk kalesha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'muzamil gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k Srinivasulu gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sayed asif', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srivaram shanmugam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tapas dolai', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed riyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Saleem  Basha GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik eliyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Fayaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Md Rajwan Hafiz Khan gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed fayaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chiranjeevi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanchi kiran', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Adimulam Vijay Kumar GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Sadiq gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shabbir gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Muneer Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk Khadhar basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chinthaginjala venkatesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed rabbani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik abdul salam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Zaheer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd javeed gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Riyaz gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jameer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madanam beeti chenchaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk Umar Farook gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abubaker gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Hameed GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jonnadula Mohan GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik nisar ahamed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yadururi Anjaneyulu GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Akram Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ameer Khan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik khateeb', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Zameer basha gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moktiyar Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik fairoz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'javed Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chenchaih', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'balaji gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed Haneef khan gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S Ashok gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed shook gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'palli easwraiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'umar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rsambadi subramanyama chari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vayyavuru Rajesh GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd meera gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thallapaka Anil  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Khader gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'koppala nani', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P Amara chari gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Ali Ahamed GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'g Sudhakar gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'P Sekhar gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed Rehamani gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik gousebasha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Sartaj gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'eliyaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SD HAYAD BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kataadathina Vijayaramaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed komaluddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ismail gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk babbu gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satyavedu Ramu GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahamkali Lakshmi Narayana gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B Bhakthavatchalam gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk Meera mohsin gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k naseer basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nazeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYED ILIYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'saik rafi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk jaheer gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'achari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad fayaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed adil', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Baddila Govardhan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chanbasha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Zaheer Ahmed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vanka nanda', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkat Rao gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sd Arshad Hussain gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kumar achari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'anjuru sasi babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'munna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NYAMATULLA KHAN GOLD POLISH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'b Srinivasulu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAYYAD YOUNUS GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik usman', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gayaz ahamad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Shafi Uddin GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Rajasekhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rozdar riyaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'riyaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ashok gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAWANT SAMBHAJI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik mustaq', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gopi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  jilani basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik rafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Rahamathbasha  Gold Jewellery work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ABDUL RAHAMAN GOLD SMITH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk inthiyaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk Faqruddeen gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk Mujir gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thaliyakula Sunil gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk khayum basha gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ansar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHREE SIDDHANATH REFINERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd samad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik sharif', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jani Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Saleem Gold jewellery WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KISHORE GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik afroz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vettiguta venugopal', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'irfan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk samimulla', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prasad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik sameer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pabbu Suneel Kumar GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vasim gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hussain', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Cellular Suresh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK AKRAM BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswarlu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Rafi Ahmed GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Abzal gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abbas Jan gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T Mohan Kumar GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p naresh gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik mansoor', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kalavakunta Ravi kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hari Krishna', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul rahim gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik samihulla', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 's suresh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vikram kumar ginger', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed imthiyaz ali', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rafi ahameed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed akbar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahimaluri chandraiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'erfan Ali Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAMLESH KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk meeramohiddeen gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Meera Mohiddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik rafi gold jewllery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik mansoor', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gummudi pudi prakasam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yamala narendra babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'munirajesh gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shakeel gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'muddarla subramanyam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Krishna', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Venkateswarlu gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'koppolu dileep kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KHADER BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pokala srinivasulu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Purushotham gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A Ravikumar gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'patan amjat', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mallikarjun', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik shahul', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sriram Jayakrishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik ibrahim', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESHAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kalahasthi janardhan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Visqanadh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'penubala bramhmaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK GAYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bheema gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ahamed Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sreemanthula vasu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MASOOD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik khadhar basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandra sekhar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Purini Ankamayya gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'azeezuddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veera Narayana', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMAD Jameel Ahammad GOLD JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK SHABBEER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kuricheti Mahesh Gold JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tabrez gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad abid mohiddin gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik muzeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pittaboina Ankaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ponduru sankaraiah achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'muneer basha gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'arekonda harikrishna', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'khaja Mohiddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik nayav', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Katabathina Krishna GOLD jewellery WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik salam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M Balabrahmam gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Puthuru sai gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thota srinivasulu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik zafrullaiah sharif', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'raghu prasad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed syed gold JEWELRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk samdani basha gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ravi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kondam Setty Narendra Gold Jewellery work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D JANARDHAN ACHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Avvari Siva gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'samad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zameer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed sawar basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Muthu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd mahabub basha jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kaikapalli Kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kaanapali Bhaskara chari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'penchalaiah gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Rajswararao gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'durgarao gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik allabakash', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pradeep', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar achari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parhan javeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yazdani Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maliga harilrishna reddy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Simhachalam gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk ebadulla gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed mynuddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sayyad akbar hussen', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KHAISAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Peddi Seshu GOLD jewellery WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskar Achary gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanchi ramaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'daddoji narasimha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahaboob basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Noushad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ravi chandra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Anandaachari gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nendrambakam Mahesh GOLD JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shareef Uddin gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHARAN BABU GOLD SMITH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Seemakurthi Muniratnam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shafi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagur gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK ZAMEER AHAMAD GOLDSMITH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK NURUDDIN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veluru Sathish Gold jewellery works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MEHABOOB BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'hussian gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Shabbir', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'afroze gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aswad gold and silver works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yanikipati babu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rizwan Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Budangunta Ramasubbaiah GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'banala narasihulu achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagiseeti venkataramnaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'seemakurthi ganesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tomburu ramadass raja', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'karimulla gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagarju adigopala', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhanwar GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Karunakar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Sandhani GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Dilavar gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hossain gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk masthan gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Imran basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK MASTHAN VALI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'asif gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patan Nayeem Khan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Md Zakriya ahmed gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk masood gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik khajamohiddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk khaja vali gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Velaudham Velu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed inthiyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Jeelani Basha GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kalavakunta Chengalarayachari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk badhulla gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'umar shareef gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's sudhakar gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Sabasha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sathish gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naveen gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk Kareem gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanchi Ramesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Beemavaram Kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed gayaz gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Meera Mohiddin gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik muneer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk amber basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thondamanadu kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahammed ali', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MD hafezulla gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shabbeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Munwar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sk Allabakshu gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pavan p', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mastan vali', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik rasool', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kareem gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'm Sathish  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed faiz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sadashiva gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ankaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik karimulla', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed fazal ahmed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'anil kumar gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kakavakam Munikrishna Gold Jewellery work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N Hemachndra achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk rasool gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Fayaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanumarthi veera manoj kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK AZEEM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T Mallikarjuna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kairapulasarab Vijayalakshmi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RABBANI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik subahan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik jilani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Masthanaiah Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'murali gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MD MUZAFAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREENIVASULU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'madhanam beti penchalaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subrahmanyam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shajahan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sami gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veluru penchala raja gold and jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed sikander gold jewelrys', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik chan basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KASEE GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kodavaluru uday bhaskar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik fayaz gold and jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AKBAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Arkat Vijay gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik rawoof basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tomburu kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAKEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suneel gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'perumal ramadas achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suresh Achari GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik shabir gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'budumagunta raveendrachari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P KARIMULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd apsar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK ASLAM GOLD JEWELRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Chan Basha Gold jewellery WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Thoheed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'khaleel gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mohammed  abdul salam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pattan Anwar Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Fazal gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Khaleel Ahamad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik fayaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahankali  Chiranjeevi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik fayaz ahmed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MURTHUJA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdulla gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYAM RAJU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K SUDHAKAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kotapati venkata ratnam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ponda Malli Mohan Gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHANAWAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sameer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'Taanesha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shauk shafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manchigalapati Mallikarjuna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANSAR SHARIF GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANSOOR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Santhala  Nagendra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Yasdani  Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shek Sandani Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'uddandi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Basheer Ahamed Gold Jwellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P RABBANI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk abdul jabbar gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sajjanapu Nagarjuna GOLD jewellery work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kishore gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vedukondalu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed  Abdul Alam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Samdani Basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Azmathulla Gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Fairaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pathan Amjad GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed yusuf', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahammed fairoz khan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik jeelani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik arif', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hari babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Shafiuddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bondili  Surendar Singh Gold Jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'allabakshu gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed imthiyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vakeel Ahamad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baba Eeswaramba Silver Products', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANWAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi mallikarjuna gold and jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jaruri Munuswamy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rajasekhar GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'perambaku kiran kumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AYAZ AHMED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khaja Masthan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREENIVASULU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ABDUL RASHEED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Annan Murali Krishna Gold Jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ILIYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAHAMTHULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik naseer ahamad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ZOHORULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk Noor ahamad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DASTAGIR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik rafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nissar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYED DASTAGIRI AHMED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SYED MANSOOR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANAND GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sajjanapu mani', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SANAVULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Azmathulla gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik abdul khar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sreemantula gopi babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jayasankar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Babu Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yousuf gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUSTHAK GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMAD MUNEER GOLD JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ponduru Hariah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK RIYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Budamgunta Muralikrishna', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JALEEL AHAMAD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik shabbir', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tirunaveli Shanmukam Gold jewellery WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pujari mohan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N lakshminarayana gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAHIMOHIDDIN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk abdul kaleem gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Ahammad Basha Gold Jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shanu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'valipi venkataiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARDAR GOLD WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK SARDAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kudimi nagendar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ahammad Basha Gold Jewellery works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik abdul raheem', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Gousf Basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAFARULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed nisar ahamad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thondamanadu guravaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed fazal', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Asif gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jameer Khan Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd Irfan gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAY GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nayeem gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ponduru durga prasad gold  works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hafeez gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Rafi Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JANARDHAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sharooq gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYED SAJIL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SYED AMJADH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk Jameer gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Munvar Basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Aziz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'eepuru venkaiah achari gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed  Shajahan Gold Jewellery  Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manohar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagaraja gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yashwanth gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sundrachari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad  Javeed Ahamed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'YOUSUF GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik yesdanibasha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'REDDY GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik sajeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik abeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srihari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kaikapalli srinivasulu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHABBIR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Intiyaz Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Putthuru Manohar Achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durgam suresh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Solavaram Shanmugam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Chan Basha Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed sardar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk iliyaz gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik mukthiyar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik sandani gold and jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yamaka venu gopal rao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Patri Sivakrishna Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Cherukuru Mallikarjun Rao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk nazeer gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rafi gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANTHA RAO GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S SUBRAMANYAM', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subhani gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUJEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Khasim Basha Gold jewellery work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed shahid', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'laksham gure', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik javeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK NASEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ponduru durga prasad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Althaf gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHIRANJEEVI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK Abdul Nasser Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed zahid ahamed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Perumandur Narasimha Achari Gold Jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik fayaz gold and jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Ishaq Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khaja Ahamed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahankali Babu achari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHANDRA SEKHAR GOLD MOULDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik kaleem', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V BRAHMAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NIRANJAN KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nazeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA SUBBAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Avvari Durga Rao Gold jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S VENKATESWARLU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Brick industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bondili narayana singh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'senji baskar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K SATHYANARAYANA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'parveez gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAMSHUDDIN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Panabaka Srinath gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganigapeta Ambarish Achari Gold Jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Aslam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pawar Hari Krishna', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'subani gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Babu Gold Jewellery Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pathan firoz khan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MASTHAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik masthan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'allabasha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajasekhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M K S GOOD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAHAMATH KAREEM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik sandani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVAKUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Rafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Muzammil husain gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALLABAKSHU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammed nazeer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rahman Basha Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaikvsameeulla', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Rafi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik shafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sekhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik allabakshu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sravya digital gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yakama srinivas varma', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suresh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moghal Rasheed  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GAYAJ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk Ismail gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rahamath gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'monohar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'U MURALI ACHARI', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed rozdar javeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramagandhi gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik gouse bhasha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aqlakahamad gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v thirupalu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Janardhan Jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGARAO GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALI AHAMAD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'budamangunta nagendra babu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khadar Basha Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Khader gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MEERA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chan Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Amjad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siraj gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMJAD BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gayal gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Sandani Mahaboob Basha Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jeelani gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HAMEED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MINA JEWELRY WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik  Raheem gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Illiyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Munendra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed shabbir ahamad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tiruathuru  Venkateswarlu Gold  Jewelry Work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Virma Ram', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Arif Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subbu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad shmshuddin gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SYED MANZOOR GOLD JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Meramoddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sk kalem gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK KHADER BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik hussain basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK SARTAJ BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik jeelani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed Ibrahim Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hayad Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASIF BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohiddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad shabbeer Ahmmad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed shakir gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'E CHANDRASEKHAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik Usman gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed shahabuddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed samdani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGA RAJU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik ahmad basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gayaz gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Zaheer Ahamed  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Abdul Azeez jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed ahamed gold JEWELRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagur gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik gouse bhasha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kamunuri Hari prasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammad ismayal', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narasimha gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURUGAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammad rafi ahmad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jakeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pathan Firoz Khan jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satish gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Faizul Ahamed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohamad jameer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nazeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Imran Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK khader basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUNDAR SINGH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shabbir gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shabbeer ahamad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mohammad khayyum ahammad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ghodke sanjay', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subhani gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patan Arif khan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK HANNAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Imtiyaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mohammed abhul gaffar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Rafi Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SADIK GOLD JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed ajas ahamad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Muneer Jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Samdani Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Rabbani gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SALAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Asmath Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'magdoom cutting works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Kamtar Rwoof', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHARIF GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'azas gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik shafi Ulla gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMAD RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagendra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', '754570032490', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK AHAMMAD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pollution suresh gold  works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sada dinesh gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jabbar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rasheed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGARAJA SINGH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PUNARAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Zakeer Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maabasha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik hayaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M KRISHNAIAH ACHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SYED RABBANI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK AFROZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maram Krishna gold jewellery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik musavir', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHALAPATI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Muhammed Muzakkir jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed Muthahar Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik abid', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Ajeej Jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'leyakatha Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dastagiri gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik riyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sadhik gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'achari gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Arif gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TIWARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jaffrullah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AHAMAD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'madayur sathyanarayana', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jeelani Basha Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MURTHI ACHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kgn machinery cutting', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DASTHAGEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'IMRAN GOLD JEWELRY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk Ismail gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRAJUDDIN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Saddam Khan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HUMAYUN JEWELRY WORS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hidayat Ali Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillaha Kami Machine Dyer Work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Fayaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gouse Mohiddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GURAVAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARASIMHARAO GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammad hyder ali', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Fayaz gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chengaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ruhid Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Govindhu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik mahaboob basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gouse Sulthan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUTAHAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kamunuru Krishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARDAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jameer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sharfudeen Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Khaleel gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUTTUKURU SURESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chand Bhasha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MASTHAN BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaikarif', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Maram Vijay Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Abdul Waazid gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MEHABOOB GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed munaf', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shahul gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sajid gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hidayath gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Sardhar Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RIYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMAD KHADER ALI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'muttukuru mallikarjuna', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik David gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK KHADER BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NATARAJAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RABBANI GOLDVWORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMAD SHAMSHEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rasool Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaffar Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Magaval Prakash Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed Muneer Ahammad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Sirajuddin gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KHAJAPEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAVEED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Zaveed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SD RIYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik  Jaber gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARLU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mastan gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mohamMed gulam mohiddin khan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Samdani gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', '331422693989', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed sadik  basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ARIF GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Batheiah Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Mujeeb Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Habib gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siraj gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Mabasha Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Devaiah gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MEERAMOHIDDEEN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bhanala gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik Ahmad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mansoor gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sayyad karimulla', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Brahmaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESWAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'khaja masthan gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik rafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vartha Suresh gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Firoj gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd ismail', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CH PARDHA SARADHI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sapalapalli Shekhar achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASULU GOLD JEWELRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd fayaz ahamad basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vekateswarlu Gold jewelry works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Senji  Ganesh  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KHADAR BASHA SK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V NS JEWELLERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAFAR GOLD POLISH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALTHAF JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'merugu srinu workshop', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Shaik  Dil dar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik afrose gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK sansani basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHADEVAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Fajil Ahmad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed maha Basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P muthahar khan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK ALI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sridhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk jafar gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK GOUSE BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Krishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHINTHA SRINIVASULU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sankara gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaikh rasool', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J MAHENDRA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Md jalaluddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GOPI KRISHNA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad Althaph Ahamed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAYYED RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SADHIK GOLD JEWELRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Md shanawaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rabbaani Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAHEEM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p Sanjay gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rafi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venky Gold Jewellers', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rabbani gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PULLA REDDY GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karlapudi suresh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK JILANI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ZAHEER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ismail gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAFI BASHA GOLD POLISH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rajendra gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SADANA MURALI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pawar anil kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hemanth kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narendra gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd shajahan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK khaleel', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Buchi babu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK SHAHUL GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jaffar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik shameer gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYED SAYEED AHMED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VKC gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAYARAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATTAN MUNNER GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJU SINGH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd ahmed nafees gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PURANDHAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'siva kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallikarjuna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Palani Rathnachari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Devendra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Jewellery Gold Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KHALEEL jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K SREENIVASULU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Mahaboob Basha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk mabasha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rafi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yasdani gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chittaturu parandhamaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pujari kannappa jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LOKANADHAACHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SANDANI BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohmmd Shahul jewelry works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK imran', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk khajamohiddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M J GOLD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P RAJESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MD imtiyaz gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RADHAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J RAJA SEKHAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA ACHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'patan firoj gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK GOUSH BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sd javeed basha gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KHALEEL GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARDAR AHAMAD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAFFEZULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Khadeer gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk rafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Surendra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Masthan gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Penchalaiah Gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RBM Gold', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYED AMANULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B SUDHAKAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'riyaz jewellers', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik Abdul rahim', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tirupalu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK SUBHAGANI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PSR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Arkaru  Bhaskar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shabber Hussen Gold jewelry works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MUNUSWAMY GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Apsar Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fayaz gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK Naseeruddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMED KHADAR BASHA Jewelry works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sk hussain gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D MADHAV GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CH VISWANATH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK shabbir', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik riyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subbu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk khadhar basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prasad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK khadar basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A VENKATESWARLU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thayanuru chandrasekhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DAYAKAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'aleem gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sadhana gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Padakala Kartika gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rama Krishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shabber Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK abid', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK ghousebasha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DESHMUK GANESH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallikarjuna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUDHAKAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK samihussain', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hafeez Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGARAJU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TRIKOYESWARA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK BABU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAYA SHANKAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhasha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gouse gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURESH KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Krish gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd ghousemohiddin', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK jeelani', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AUDI SESHAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Panabaka babu  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RIYAZ GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohamad Fayaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M NARENDRA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'khadhar masthan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATAN YESDHAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p Ravi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A VIJAY KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'POLAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prabhakar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk parvez gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAVEED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasulu Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sankar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E AUDI SESHAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK SHAHUL GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KAREEMULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Gold', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Galaji Tirumala gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Munuswamy gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURENDRA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Umapathy Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHAJA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmipathi gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karimulla gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHADER BASHA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Srinivasarao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Padakala Chandra gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GORRE KRISHNA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARAHARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAGDUM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P jaayakumar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'patan Riyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK masthan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'THILAK GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAFI GOLD POLISH WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK JAVEED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subrahmanyam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHARIS POLYMERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATAN YASDHAN KHAN GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK shameer', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LALITH KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUBHAHANI GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nagarju gold jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAFI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ashok gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amjaneyulu Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J P JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rasheed gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Babu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAJID AHMED GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PANEENDRA KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MALYADRI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK rafi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Noushad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay Kumar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahammad ar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Apsar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajasekharam Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURENDRA BABU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'UMA MAHESWARA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sridhartha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURALI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SEKHAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Murugan Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVEENDRA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMJED KHAN GOLD POLISH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MEERA MOHIDDIN GOLD POLISH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Areef gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATEESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAKASH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PARANDHAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sambasiba gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venky Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SD Nayub KAMMI Machine Die Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'likhita computer graphics', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NAYAB KAMMI MACHINE AND DIE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasulu Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chinna Rao gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's mahesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RADHAKRISHNA GOLDWORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Arun gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T SRINIVASULU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Malyadri gold Ornaments', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATEESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinuvasulu Raju gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK saleem', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANCHI RAMANA KUMAR', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANCHI NARENDRA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SANKAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shamshir Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUNU SWAMY GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naresh Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ELAYATHULLA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARENDRA KUMAR GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd hussain basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK LIYAKATH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KGN gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B Munivenkata subbaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA MURTHY GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DASARATHAN OIL ROTARY MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k lokesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANATI BHARAT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SILPARAMAM', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DS GOLD KAMMI AND DIE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NATRAJ JEWELLERS', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TURAKA POLAIAH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA KAMMI MACHINE AND DIE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagendra goldwoeks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'duvvuru balasubramanyam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narayana reddy gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOLD AND SILVER REFINERY BHATI', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARTH BABU HAND MACHINE CUTTING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bolleddula thiruprasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswarlu gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik khayum', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SADHIK GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'N SREENU GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FAZAL GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUMAR GOLD JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOUTHAM JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA TEMPLE JEWELLERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PALURU PURUSHOTHAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARENDRA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'E S JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'thirumalesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manohar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMANA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ankaiah gold workers', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jayaram gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri mohan jewellery works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 't sekhar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Swarnamahal', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'teja', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vasu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri krishna gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sateesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Janardhan gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prithvi Raj gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghu achari gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MADHU GOLD SMITH WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAADAVACHARI GOLD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parandhamaiah gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THIRUMALA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARI GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sachin bhatty', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ABDUL ALEEM JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manufacturing', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CK JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAHAVEER JEWELLERS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Radha  Krishnanmadhiram Gold', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jyotirling refinery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HARI KROSHNA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ummar Faruk gold', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vaibhav hanamant kadam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajus Gold Palace', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Sekhar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'POJITHA JUMKI WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALA GOLD CHAINS MANUFACTURERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'POOJITHA GOLD JEWELLERY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vamsi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURESH JEWELLERY  WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATARAMANA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEELAKANTAM GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kalesha gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswa gold and jewelery works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAJ JEWELLERY PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gold Palace', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ASHOK GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manvi gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijayalakshmi gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maa nagneshee  chain', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VAISHALI JEWELLERY WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhanalakshmi jewellary mart', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI DURGA JEWELLERY WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai jewellery work', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohammad fayaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittaturu sivaramaiah', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik inthiyaz', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Jewellers', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pradip kumar dolai', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ajit dolai', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sayex mastan', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'syed khadar basha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'raju bardolai', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anantha Lakshmi', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'astro sardar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srikanta hait', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pachuru prasad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chittaturu mallikarjuna rao', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Appabhaktula somaraju', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEDDAM VENKATARAO GOLD WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Yesu Jewellery works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Padmavati Venkateswara casting Jewelry works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH JEWELLERY AND WORK', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M A N jewllery work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Katam Bhaskara Rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Teki satyanarayana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'om vinayaka jewellery works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vinod jewellery works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohamad asif', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gopi Jewellary works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari Prasad workshop', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pattan Arif khan dye works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja Gold Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik vaheed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'koushik Gold Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI MELTING AND TESTING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kakaluru Shangha kumar achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jagadeesh gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk rafi gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anwar gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'habeeb Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Divya Jyoti Jewelry and Works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mukesh Kumar Gold jewelry work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'zabivulla gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Taj Ahamad gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shanwaz  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Abdul sattar  gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'subramanayam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chengaiah Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GGN GOLD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya Narayana gold Smit unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Prasad Dye Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T NAGENDRA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHANKAR SILVERS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD AND SILVER ARTICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '39']
[' Industry Name ', 'carpentry works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'GOLD SILVER AND PLATINUM JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagabhushanam polishing works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHITTOOR BODY WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'deepika abrasives', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Om sai Suma industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'annapurna engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p srinivas', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Durga welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS Mahaboob Basha Lathe and Welding Works', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Grading of Ferrous Metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWARN FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'common effulent treatment plant', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kalyani gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sujatha gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T V S GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SUMASREE GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'APSARA GOLD COVERING INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHANA LAKSHMI CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Shireen bangles', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S L AUROPLATE JEWELLERY PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SREE CHAMUNDESWARI SILVER WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'chilamkurthi venkata subbarao', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'PADMA SREE GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri GVG Gold Covering Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA DURGA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'HEMA SREE ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'AASHA GOLD PLATING JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'N G M GOLD covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NAVANEETH PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'POOJITHA JEWELLERY MAKERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GOLD KING FASHION JEWELLERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'teja sree gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'poojasree gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Rehan gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VENNALA GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sapthagiri chemicals', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'K S J IMITATION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'THANUSRI JEWELLERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Moon light Gold', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'GOLDPRINCE GOLD PLATING JEWELLERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sree Sudha Jewellery', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'shaima gold', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'YOGASRI MARUTHI INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sudha Gold Covering Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'VK gold covering', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SIVA SRI GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'GOLDPRINCE PLASTO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NEW IMITATION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'meri gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'RAMYA FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'DECENT GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkat sai manikanta jewelry works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AKSHAYA GOLD FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BRIGHT GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'YASASRI GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI KRISHNA GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'soumya gold covering industrial', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ASHVINI GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'NEWGOLD FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SKT GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SYAMALA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Ramesh Silver Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CHANDRIKA PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SATYASRI GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NAGASRI GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'CHANDRIKA IMITATION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'KANAKA JYOTHSANA IMITATION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'R K GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GOLDKING FASHION JEWELLARS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA SAI ELECTRO PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'KSN  WIRE DRAWING MACHINE  WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GOLDPRINCE JEWEL INDUSTRY INDIA', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NAGA BHUSHANAM MOULDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A NAGESWARARAO MOULDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAVEENDRA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'HEMA BINDHU FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'MOHANA LAKSHMI GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHISREE GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Uthpala Fashion Jewellery', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'VENKAT GOLD COVERING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'K V IMITATION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Apsara Gold Covering Jewellery', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'cement bricks and pipes', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VSD Gold Covering Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'T CH N V LAKSHMI', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K raju wire drawing', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veni sri gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'Meesala Srinivasa Rao', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gold Prince Gold Covering Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOLDPRINCE GOLD PLATING JEWELLERY PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '27']
[' Industry Name ', 'SATYA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GORLI JYOTHI', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THIRUMALA CASTING AND MOULDING SILVER WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRG GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBHA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'STAR GOLD COVERING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI VIGNESWARA GOLD COVERING  WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'TS GOLD', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KHAJA BANGLES  RAW MATERIALS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SREE SANDHYA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'R B FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NIKHILA RAM INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KARIMULLA PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'JAYA SRI GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUBHA SILPA SAALA', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRINU GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'F A B JEWELLERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'V B K GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'F D B FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SURYA  CASTING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'N S V K R MOULDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijayasri plasics  jewellers', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAI KRISHNA MICRO PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MENAKA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SATYANARAYANA MOULDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUMASREE K T FASHION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAJA GOLD COVERING JEWELLERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'VGR LACQUER POLISH WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'NEW DADA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'RAVI INJECTION MOULDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'R B INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'G R FURNITURE PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree venkateswara engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'om deep s s fabrication', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya durga rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Trunk', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Guru Krupa Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'prasad projects', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'mastersaluminium india pvt limited', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI DURGA ALUMINIUM WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siri kubera metal industries', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'venkatadurga Aluminium and Glassware', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gayathri rolling mills', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI CHAITANYA METAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dasthgiramma Industrial', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF ALUMINIUM UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Gold works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAHASRA GOLD WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Viswa Gayatri Die cutting works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHITTI BABU GOLD SMITH WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghavendra Gold manufacturing and testing', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJA GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAGAR GOLD MELTING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'UMA MAHESH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANOHAR GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANKAIAH GOLD WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUMAR GOLD JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURESH JEWELRY WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri viswakarma Goldsmiths pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SHIRIDI SAIBABA GOLD KAMMI MACHINE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GK SILVER WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BAKSHU GOLD JEWELLERY WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GORLE KANTARAO INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'durga bhavani industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacture of Gold or Silver Smithy Products from its Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MTM IMITATION JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAMU ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'surendra die cutting works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N R JEWELLERY PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MALLESWAR RAO GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Asha gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Divya Gold covering', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'NEW RAMANA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'suma sri kt fashions', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'KALA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'lovely gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SANDHYA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KUMAR FILTERATION', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'GVG PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'SREE MADHU GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'ANAS GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI MADHU GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Usha Exports', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Veranki Rambabu', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ayyappa rold gold works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHEEDAR GOLD COVERING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PINNINTI SURIBABU', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVEAYYAPPA GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ZAMEER MICRO GOLD PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Msrinivasa rao Gold coverings', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAGGAR GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'KARUNASRI PLASTICS AND JEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M M GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'TAJ MICRO PLATING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'HIMA NAGA SREE MOULDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VEENUS GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'ADDITHYAW GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ATCHAIH NAIDU MELTING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri veera raghava supreme industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SREE RAMA PROFILES', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Gouri sankara industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahalakshmi creative Turner works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri kameswara steel works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara small scale industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Neelakanteswara welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kishore  electrical and mechanical works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri raj kamal engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sankarrao welding designing works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mahamad Ali welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Mukesh industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jai santosimatha welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik karimulla', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai manikanta welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rafi Foundry', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Nookambica welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dhewe iron industry', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gidijala satyam welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NOBEL INDUSTRIES CORPORATION', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHINTALURI RAJA RAO ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khaja Hussain Iron Industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK ENGINEERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Siddharth Welding workshop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'R K INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Velangini Matha Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bhaskar welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswaraindustries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'surya structures', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'nookalamma iron works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VOLGA ELEVATOR INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'manikanta fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri nookalamma welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYA SARADHI WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri jaganadha metal Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'arunodgaya welding work', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jagadguru  industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Koneru constructions pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srirama welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka durga welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRAGATHI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Hira press forms', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rao industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maganti Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMARAVATHI CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Murali Welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya steel industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Naidu welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Lakshmi fabricators and steel works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SRIRAM FOUNDARIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'Sri kanaka mahalakshmi engineering works sri nagu shutters', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Durga Welding shop', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rambabu engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHARMA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SUBRAMANYEAWARI ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIKALAHASTHI PIPES LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1000']
[' Industry Name ', 'SAI DESIGN AND WELDING', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Liyaquath  ali mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K Narayana blackmithy works', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G D R cylinders  Private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Sri Sri Mutyalamma thalli Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Venture Automotive Tooling India Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '63']
[' Industry Name ', 'subhani engineering workshop', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAKASH FERROUS INDUSTRIES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '153']
[' Industry Name ', 'Moulali Welding Shop', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Star Weld Mesh industry', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SPK AGRO INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUPTHA MAHALAKSHMI STEEL RE ROLLING MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'BABA WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BALAJI INDUSRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Pushpit Steels Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '213']
[' Industry Name ', 'Sri Lakshmi venkateswara welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Panduranga agro industries', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA LAKSHMI STEEL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Madeena industries', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VA ABDUL RAHIMAN Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'BORA LAKSHMANA REDDY', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA DURGA OLD SPRINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CSR welding and Work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'KGN welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAIRAM WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANIKANTA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Chinna naidu welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Masha Allah welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mohammed Ali welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sai baba industries', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Khasim Iron works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ann Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Amba coach builders private limited', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'ali welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mukheeb foundry', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sambasiva Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'master valves industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA SANKAR METAL WARE', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'VIVEK ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Tiruven Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'lakshmi sai lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARDHAMAN AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B M FURNITURE AND IRON WORK', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Ayyappa weldings works and building materials', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ganesh Forging works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JBR Roofing industry', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tadipatri pipes and wire nails', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ganesh Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI  LAKSHMI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DARSH ROOFING INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'kanaka durga lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'YASASREE SAHAARE BLACKSMITH', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJ ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRABHU BLACKSMITH WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'limra centering plates', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bismilla furniture', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PUSH ENGINEERING WORK', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bharat mata welding center', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DEVI PRANITHA WELDING WORKS AND BLACK SMITH', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srianjaneya welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mutyalamma Small Scale Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kattubadi Mahammad Najeer Ahmad welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURESH BABU ACHARI WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'AMODA IRON AND STEEL LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '34']
[' Industry Name ', 'Harita industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SK welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hari Krishna Turning and Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'indian engineering company', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'IRON WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KAMESH WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pioneer castings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hvr agro industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vara lakshmi lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KAVERI ROOFING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SJ ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SREE RAMA STEEL WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Durga Saradhi Dhanalaxmi welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vanaja Foundry workshop', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NithyaJyothi Steel Furniture Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata Durga steels', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bangaru durgamma welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VEMACHARI BLACKSMITH WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi foundry', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sandani welding shop', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tarunanavai  mastan baba', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SriRama welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYANARAYANA FOUNDRY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI GANESH FABRICATION', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HANUMANTHRAO FOUNDRY', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijayadurga Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARSHA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri durga kankamahalakshmi wrought iron and welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama welding works Tettangi', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI NARAYANA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tara Tarini welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRI WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rajarajeswari welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Ravichandra welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri siva sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi motors and engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vani fabrication works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Navadurga welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TAJ ROLLING SHUTTERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Purushottam Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bashir welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SURYA ROOFING SOLUTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'rajulamma thalli welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAIBABA FURNITURE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkata sai welding and fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Yashvanth Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kankinada Srinivas', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara weldings', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANNAPURNA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Krishna arc welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI CHAKRA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siva Durga Agro Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Venkata Raju Deekshath Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'B P L FABRICATORS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Navya Fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MADIYA TIRUPATHI RAO WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMBASIVA FAB-CITY INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswara engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRB WELDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SURYADEVI WORKSHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mubarak Traders and Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ravi industry', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BALAKRISHNA INDUSTRIAL', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN AGRO INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Guntapalli Bramahanandam', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree vigneshwara industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ASR Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAMPATH VINAYAKA FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI AGRO ENGINEERING', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'devi ananya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIMHADRI welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aruna industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'MVR ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'G Devarajulu Aachari', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Ms Kannikalamma Engg works N Govindachari', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi grills manufacturing works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shalem lorry body building works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN ISPAT UDYOG', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '44']
[' Industry Name ', 'sri vighneswara welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYANA TURNING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Rajyalakshmi Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskarachari Industry', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ambika black smith works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manikanta fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUDHA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri rama maruthi turning works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri durga black smith', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'allmadeena welding work', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ganesh welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA ENTERPRISE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'NEW LIFE ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jai Durga bhavani welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ayyappa welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'SREE KRISHNA STEELS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'LAKSHMI WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NOVATECK', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VISAKHA COATS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri lakshmi Venkateswara flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PYDIKONDA ENGINEERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Kankadurga welding wokshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Welder', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI ENGINEERING ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'venuamma thalli welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai sahdhuguru Vinayaka rolling shelters and welding work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'QUALITY ENGINEERING ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SURYA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ASR INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'suhani industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya Durga eswara fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA DURGA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Welding Shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ravi welding and turning works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K VENKATESWARLU', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga devi Iron works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R K Industry', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUBRAMANYESWARA AGRO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'R fabrications', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pandiri ramana welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRUJANA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kamakshi Metal ceilings', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KK STEEL INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'VIJAYA STEEL CORPORATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Sai Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hydrise hydraulics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KANAKAMAHALAKSHMI WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kailash Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Kanaka Durga Welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RADHA KRISHNA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Shivadhitya Enggineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'CHOUDHARI STEEL WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mastan welding', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KORE ELEVATORS AND ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA SAI FURNITURE', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Link Fasteners and Fabricators', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ROMA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VISWAPITHA SIVA AGRO INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LALITHA metals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SGS MARINE HABITABILITY PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ps industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'JUBER ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SBR WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JAI KAPEES ASSOCIATES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Ms MADHUBABU INDUSTRIES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Siva industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GURU RAMAKRISHNA TUBES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '24']
[' Industry Name ', 'KANAKAMAHALAXMI IRON SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA SAI INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NAYAB BASHA AGRICULTURAL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PADMA RAJA STEEL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLA WELDING WORK SHOP', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA GRILL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'APEX ENGINEERINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'UK Steel Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LIKITHA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Charka Welding Shop', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'visakha enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'BISMILLAH STEEL AND FURNITURE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LOKESH FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka durga Welding shop', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A1 BUCHI IRON SHOP', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEERA METAL PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'Sri Mallikarjuna Smith works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHARATHI STEEL INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Pennar Industries Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri shrivasta engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Venkateswara iron works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'mutyalu welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AS Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kerri Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ARJAS STEEL PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '847']
[' Industry Name ', 'SRI RAMAKRISHNA LATHE AND WELDING WORK', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DESU STEELS', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATESWARA IRON', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWRA STEELS', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAXMI DURGA LATHE AND WELDING', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'JYOTHI ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Durga Bhavani welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MOHAN CO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Shri Lakshmi veerabhadra welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ammayi Lingam Kammaram Karkhana', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'noor mohammad industries', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'durgabhavani welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SAI lakshmi wires', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'JAINABI FURNITURES', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI VENKATESWARA WIRING INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Javeed furniture works', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI MALYADRI AGRO TRAILER AND IMPLEMENTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'RAVITHEJA ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Susheel G Packaging Industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '27']
[' Industry Name ', 'Ali Welding Works', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUNSHADE ROOFING AND STRUCTURALS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SONAANI POULTRY HOUSE', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'VISHNU STEELS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'S V YOGA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI LAKSHMI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAYALASEEMA ENGINEERING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'PEEKAY STEEL CASTINGS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '81']
[' Industry Name ', 'Anusha metal', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Star Metal works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Subhani Metal Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Polmamba welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Huthkrist Steels', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Amaravathi Fabs', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna Metal Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Mallikarjuna Metals', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sriji sri hanuman metal industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Swamy Ayyappa Metal Industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Diamond stainless equipment', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUNNA STEELS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Sannidhi Stainless Steel Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'UMA    SANKAR     METAL     WARE', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MESSIAH METAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Chaitanya metals', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree veera hanuman metal industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Uma sankara metal ware', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Bismillah A1 Millers', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi narashimha matels', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'hazarat Bilal scales', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE DURGA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai crupa metal industry', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANALAKSHMI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI GANESH STEEL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Nataraj Metal Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ASWINI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI STAINLESS STEEL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA METAL INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri revathi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIDDIVINAYAKA CONTAINERS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sampath Ganapathi Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE SADA SIVA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SARVANI INDUSTRIES ARTS AND CRAFTS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GVR STEEL INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri durga metal industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJA CORPORATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SAHUWALA CYLINDERS PRIVATE LTD UNIT 1', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SATYAVANI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sahuwala cylinders private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'DHANALAKSHMI LATHE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S S METAL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Manufacturing of stainless steel utensils', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'shaik jani basha', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Mahalakshmi Industries', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YADLA KANAKAYYA BRASS INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana small scale  Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagalakshmi small  scale', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATTI RAMA KRISHNA REDDY BROTHER', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri ganesh metal works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'YELURI RATNA KUMAR', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJESWARI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BAVANA VENKATESWARLU', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH METAL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VASA SOMA DANA VENKATA SUBRAMANYAM', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA MOULDING', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BOPPE UMA VEERABHADRUDU', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMULYA METAL INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TAMMA ALLAMA PRABHU', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOPPE CHANDRA SHEKAR', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA METAL INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'saibaba brass work', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'surya brass work', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAWAB ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Krupa Bangles Manufacturer', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rajesh Copper Works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KANAKADURGA COPPER RE ROLLING MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOWTHMI METAL UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'praveen metal works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkataramana brass industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'netaji brass industry', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri surya brass industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'jayasri copper works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MFG OF BRASS UTENSILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Siva sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'JAYA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ASTROTECH STEELS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '260']
[' Industry Name ', 'Parvathi iron and weilding works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAHALAKSHMI STEELS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SAPTHAGIRI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KAMALA STEELS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vasavi wire netting works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ambika wore net industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Raja wire drawing works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree Maheswara industries', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Jai Durga Mani teegala machine', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PC INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree sai balaji industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOWRI PARAMESWARARAO WELDINGS WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sivani industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri bhavani wire industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDINI WIRES ALLIED PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'SRI VIJAYESWARI WIRE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shiva sai welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VASAVI INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Harsha Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI JAYALAKSHMI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Goyal Bright Steels', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MS WIRE DRAWING AND CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'venkata siva sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'seeta rama engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay sai industry', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MG Hydraulic services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Varalakshmi Arc Welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KEERTHIKA GAS CUTTING AND WELDING', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KSR Welding Works', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji Foundry works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya deva agencies', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANURADHA WELDING SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ms sri Venkateswara welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree sai deepthi beerva shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Tinkering Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NEW EXCELLENT ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara welding shop', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Patha inumu kottu', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Harinath Fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kumar fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri vinayaka engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Devi welding work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Minerals Mapping Pvt Ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri nidhi steel', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'poundry And Welding works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SR INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SAI SURESH STEELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMAKRISHNA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOKSHITA WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kusuma Engineering', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATHI HARDWARE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI NAGA VENKATA SAI FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vagdevi enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'K venkatarao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi vijaya furga welding and design works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vee gee engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maruthi agro industries', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GAJALAKSHMI CRUCIBLE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DASTHAGIRI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Kanaka Durga Lathe works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA INDUSTRIAL WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SATTIBABU FOUNDRY', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'K SATYANARAYANA WELDING', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gousia Work Shop', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Penchala Narasimha Swamy Engineering Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Babji work shop', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Processing of Iron Scrap', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Johnson beeruva and painting works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'L V grinding works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vamdev fabrication works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai Durga Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI ROLL FORMING INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jyothi tyre mould works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATA VARAHA LALITHA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri sai aluminium works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AASTHICK ROOFINGS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GanapathiRao Welding Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai sirisha aluminium works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Refurbishing of Aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Maheswari Steel Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Divya Jyoti welding works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISHNAVI METAL INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri panduranga gas welding woks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri Dadi thaliama welding  works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUNLIGHT METALWARE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vijaya Durga Kitchen accessories', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri Madhigowri welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga manikanta welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmiganesh welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA MULTI CAR SERVICE', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE SREENIVASA WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'OM ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkateswarulu engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkata  Ganesh Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri raghavendra engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'aswini INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUN SHINE PHARMA NEEDS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai tools', ' District Name ', 'Prakasam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMAKRISHNA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SNC ENGINEERING AND CONTRACTORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '18']
[' Industry Name ', 'GM TRADERS AND CO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri partha saradhi metals', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STAINLESS STEEL UTENSILES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Raghavendra engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Yellamma thalli welding workshop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asif welding works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi Steel And Furniture Work', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Kothamma thalli welding work shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga Bhavani welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijji fabrications', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'century Wells roofing India private limited', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi srinivasa engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VERMEIREN INDIA REHAB PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '143']
[' Industry Name ', 'sri mavullathalli hard welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri durga welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'trimurthy motor mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'durga bhavani welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K G N METAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAMASIVAYA IRON WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Al Madeena Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'jai welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'laxmi welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sardar turning works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURESH METAL INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshminrismha Hydraulic works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gayathri Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MABHU SUBHAMI FABRICATION WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vasrshini works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GHOUSIA FURNITURES', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mohammad welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KARTHIK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI FURNITURE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RRS INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'V V N S WORK SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madina grills work', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'gangaratnam welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anji putra welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA SAI ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri sai Durga mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LASER CUTTING', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI  MURALI KRISHNA ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SAI OFFICE NEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VIJAYA LAKSHMI METAL INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madina Iron Furniture Works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk khadeer grills and welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Usman industrial', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M A S ENGINEERING GRILL WORK ROLLING SHETTERS', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NOOKALAMMA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'H M Furnitures', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'mahrishi alloys pvt ld', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '86']
[' Industry Name ', 'Chalapathi lath machine', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N MOHAMMED SAIF FURNITURES', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'PALLA APPALA SWAMY METAL MART', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'TEJA METAL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amjath welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivasa wielding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA GRILLS AND FABRICATION WORK S', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA WELDINGS WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VENKAT SIVA DURGA IRON WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eswari Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RISE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AVANTHIKA WELDING WORK SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'venkata syamala iron safe industry', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sribangarammathalli welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Devi welding shop and designing works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dhanamsetti Suresh Kumar', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'APPALA RAJU WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S SABBEER BASHA WELDING SHOP MUDIVEDU', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pavani engg and welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A S S FABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri durga welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga bhavani weldingworks', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naidu welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMS FURNITURE', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMESH WELDING WORKSHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sreekanth enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAHABOOB STEEL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI BABA FABRICATION WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bios Technologies', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Anjaneya iron safe', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'New Everest Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Udbhav Metal Systems Manufacturing Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'ARJUN STEEL FURNITURES', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'NISHA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CAN FABRICATIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'DREAM CATCHERS WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri kanchammathalli Welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ramu mechanical works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALANKAR STEMET INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KRISHNA TEJA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALANKAR STEEL PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Annapurna welding work shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANIYA STEEL  AND FURNITURES', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'satyanandam mechanical works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Baba Alimo Work', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLAH STEEL WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Yellamamba welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMMA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'New salma grill works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRINIVAS ENGINEERING WORK SHOP', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Amma welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kanakadurga steel products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BHARGAV INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAKRI INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi Srinivasa industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A1 ENGINEERING GRILL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KANAKADURGA FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KNR ROLLING SHUTTERS AND GRILLS WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S V B GRILLS AND WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENGAMAMBA GRILLS AND WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Saleem basha furnitures', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', '3CS METAL INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ALANKAR METFURN INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'jayakrishna steel furniture', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GK FABRICATION WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEVEN STAR ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'S M S GRILLS WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JANATHA SAFE COMPANY', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI DURGA BHAVANI WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK HANIF WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RIYAD HYDERABAD HIGHTING HOUSE AND HIRES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KARIMULLA SHA KAHADARI AKBAR WELDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CHEITHRA ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI TIRUMALA FURNITURE', ' District Name ', 'Kadapa', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'M K ENGINEERING GRILL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI SAKTI ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'METALLIC', ' Activity Name ', 'STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bhagya Electroplating Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanchi kamakshi ENGINEERING works', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'grace traders', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kasturi old iron shop', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RMR KNIVES WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Bhavani Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOUSARBEE  GRINDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K G N ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'madeena grinding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASIMA HANDMADE KITCHEN KNIFE', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'masthan grinding works', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'abdulsalam avvari', ' District Name ', 'Chittoor', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP GRINDING AND PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri satyabrahmam black Smithy works', ' District Name ', 'East Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP PRESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BALAJI  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP PRESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'K VENKATACHARIWELDINGSET', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA SAI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'METALLIC', ' Activity Name ', 'WASTE SCRAP PRESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RAITHUMITRA BIO ORGANICS PESTICIDES AND FERTILIZERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srinivasa  traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA AGRO BIOTECH', ' District Name ', 'Srikakulam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI KISAN VERMI COMPOST', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'swasthik', ' District Name ', 'Kurnool', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkateswara industries', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MSRM ORGANICS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'organic fertilizer', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'KALKI ORGANIC MANURE', ' District Name ', 'Kurnool', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Organic manure (manual mixing)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NACL INDUSTRIES LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '642']
[' Industry Name ', 'Bhagiradha  chemicals and industries limited', ' District Name ', 'Prakasam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '349']
[' Industry Name ', 'SRI RAM AGRO CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE CHANDRA TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Ananthalakshmi', ' District Name ', 'Prakasam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Hindustan agro insecticides', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS Jwala crop science pvt ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MS Pradeep seeds and pesticides', ' District Name ', 'Kurnool', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sathya agri biotech pvt limited', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAPYRUS PERFORMANCE CHEMICALS', ' District Name ', 'East Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ALPS AGRO INPUTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vasishta pesticides private limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES FORMULATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'RUPA FERTILIZERS PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'PESTICIDES FORMULATION', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'sri lakshmiganga water works', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'fathimareddy enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAVASI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Life line Foods and agro Products Pvt Ltdexpansion', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '42']
[' Industry Name ', 'srs mineral products', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMANA COFEE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAZMA COOLDRINKS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rajarajeswari juice plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAPTAGIRI BEVERAGES AND FOOD PRODUCTS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'om sai ram enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Brand Mart', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lemonla Beverages', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Adi narayana water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajasekhar beverages', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gemini Drinks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'alnoor cool drinks shop', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Charan Beverages', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRIHARI INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'doddi apparao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Dolphins acqua products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VC nutrifood private limlted', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'TEA TIME', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYABHARGAV WATER INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kshethriya mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijaya bottlers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'vijaya cool drinks', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna Beverages', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ASHOKA BOTTLING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'A R Raju  Bros', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aerated Soft drinks', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '38']
[' Industry Name ', '7 horse soft drinks', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sree penusula lakshmi Narasimha Swamy purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Viswa Aqua water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TCS PLASTIC BOTTELS MANUFACTURE UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '37']
[' Industry Name ', 'Sri Vijay Durga mineral water and  Soda making unit', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KHAJAVALLI MINERAL WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi ice parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abhiraam industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Krishna Foods and Aqua Minerals', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Safe soda plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ROYAL TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RUCHI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Rishi drinking water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bhavana water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'AERATED WATER SODA MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jai jai sri ram general stores', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SWARUPA DALL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI VENKATESWARA DALL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GRANDHI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'swetha vyshnavi dall producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SRI ANJANEYA DHALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mugi Rudrayya folur mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaya sai poly packages', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sai ram industries dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Pavani Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sesetti madhavarao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Surya sai many kkantaa', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri mahavishunu industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms mamatha rice and flourd mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi sai Nadha Agro Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VEERANJANEYA POLYMERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Priyanka spices limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Dhanalakshmi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SRI LALITHA FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETHARAMANUJAINYA DHALLS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DATTA SAI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai Annapurna  industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri bhavani  rice and flourd mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri nallamilli Venkata reddy Sri tirupathi satya sai baba rice and flour', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Thripura  Dhall producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'munnaya floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ssvsa flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Sivaramaiah Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Parvathi dall producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'seetarama rice and floar mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'parvathi Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'chennaiah flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara rice and floar mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rangamma flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree padmanabhaswamy rural ware house', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri MALLIKARJUNA rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ramakrishna flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANALAKSHMI DHAL AND OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'kanakaraja pappula mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P L Kaltevani Flour Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sarada Dall Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna rice and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya prasad flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi dal mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AMBIKA DALL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANNAPURNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA LAKSHMANA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA PINDI MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAXMI DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'seshana pindi machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karuna Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDRA DHALL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BABA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rehamat bi floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramathulasi FLOWER Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BLR DHALL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BLR INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PADMAVATHI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ranganath Swamy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MSL FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIVATSA AGRO PRODUCTS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ramalingeswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'borla gadda ramarao', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'The kaikaluru consumers central co op stores rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ratnakumari flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sadananda flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Krishna flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asoka traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Navya Mini Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Ramana Dall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sanyasi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGESWARA DAL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri uma atukula millu', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAINBOW FOODS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vinayaka flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhanumathi floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amaravathi traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk fareed dall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vasavi Dall mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI MAHALAKSHMI MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijay lakshmi daal producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Lkashmi Venkateswara Swamy Dhall mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAXMI VENKATA MALLESWARI TRADERD', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI GURU RAGHAVENDRA FRIED GRAM MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Srisai flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Radha Krishna Dall and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhanalakshmi oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE RAMA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI KRISHNA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanakadurga oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sai Krishna Enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VARAGANI RAVI KUMAR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veerabhadra Swamy flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasavi enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GAYATHRI NAGESWARI DALL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARASIMHA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata nagendra industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI GEETHA COMMERCIAL CORPORATION', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Gooty Loka Reddy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mision', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sailaja doll mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'CHINNARI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivas flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi  malleswara Swamy floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMBHASIVA RICE AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chintala Ranga reddy Floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SAI DURGA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmichennakeshava Swami Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI UDAYA BHASKARA OIL MILLS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jyothi dhall mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CHANDA SRIRAMULU FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri majjigowri flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Divya Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri polamamba flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sridurga Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri acchayyamma rice and flora mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA PULSE PRODUCERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi narayana industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Venkata Ramana Rice and flourmill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva dhattha dhall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi srinivasa dhall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vekata durga  dhall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMI FLOUR OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama grain miller', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Boddu vasudeva rao floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi Dall Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji Flour and Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kowsalya dall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'santoshi matha wet grinder', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Suryakala Flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sekharrao flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bangaramma thalli floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Savithri Grain Milling', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata sai krishna dall mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Lakshmi floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Krishnarao floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'small flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'surya flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYALAKSHMI OIL  DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flore mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Salma flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'saree jayaram pindi machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya oil mill and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SRINIVASA MODERN DALL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Pavani flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'suseela mini floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETHAARAVAMMA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri balaji dhall and general merchants', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'EVERTASTE COTTAGE INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Venkateshwara dall  mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA FLOOR AND RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari Priya dal industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATA SAI NARASIMHA DAL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SIVA SAI FRIED GRAM MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUVARCHALA DALL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateshwara Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ganesh dall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'umamaheswari rice and floar mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shafi dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ganesh modern dall and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Hanuman Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahesh flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sambasiva rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA KRISHNA DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VEERANJANEYA DAAL GRADING INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri muthyala annapurna flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Krishna rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MINI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Reddeppa Reddy Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateshwara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai ganesh oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI MINI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Durga Oil and Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M SHANTHA KUMARI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veera Raghavaiah pindi millu', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NEW NARAYANA TRADING COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji Dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dal millu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi narshimha swamy floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vaibhav seed processing unit', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kotha veera raju general stores', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Ram Dall Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vijay sai traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh Mini Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIKANTH INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Dal Millu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kamashitaie traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Grinding Millu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Horse gram millu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiri maheswara agrotech pvt limited', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lalitha flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIRI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI DALL AND GENERAL MERCHANTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siva  Goal Krishna flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramthulla Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka maha Lakshmi floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Sitha Ramanjaneya Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanakamahalaxmi Rice and Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKADURGA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tandava Krishna traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Lakshmi Narayana Rice and flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Srinivasa enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ATTUKULA MILLU', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai flour mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI UMA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kumar Reddy mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA PARVATHI TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RADHA KRISHNA RICE  AND DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI SURYA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Rama oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VIJAYA DURGA DAL AND FLOUR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gangabhavani traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'paidimamba rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P PRASAD DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI DALL MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sadguru sai flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAMAKSHI AGRO INSDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'sri srinivasa flour and oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA HANUMAN FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Cottage industry', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Boina Krishnavenamma', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD FLOUR MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE SAI LAKSHMI PADMAVATHI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SURYA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Amma Flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shahi floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi modern rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Laxmi Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHINTALAMMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gurinadha flour and oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meenakshi dall mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Y Venkata Rathnamma  Daal and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi narashima swami rural godown', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri devi flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHRII SRINIVASA DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'satyamdallmill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYALAKSHMI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'LALITHA TRADING COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JSR DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'jayalakshmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ravali Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHALAKSHMI PULSES CLEANING AND GRADING INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kartikeya Dhal mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRIKANTH FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'baba enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Bharat small flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Dhanalakshmi jaya Rice and oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI JANAKI RAMA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATADHRI AGRO PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AYYAPPA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'visalaakshi dal mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISWANADH DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri lalitha padmavathi dall mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SVS MINI DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA DHALL MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SANKAR DALLS AND GENERAL MERCHANTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MAHESWARI DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MAHALAKSHMI SRINIVASA DALL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A V sathyanarayana', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAMBASIVA DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Venugopala Dall producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MARUTHI flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANASA DALL AND FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Lakshmi Dall Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NATARAJ FLOUR MILL AND WET GRINDER', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri hari flour mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI LASYA AGRO PROCESSING INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'OJA NATURAL FOODS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SAI BALAJI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI GANAPATHI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Srinivasa traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Anantha laxmi floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jeevan Agro Traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI VENKATESWARA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SESHA SAI ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'UMA MAHESWARA DALL MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri balaji rice  floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JANATA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Srinivasa Rice flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATHI FRIED GRAM INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srinivasa Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Dhoniparthi kalavathi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY RURAL FARMERS WARE HOUSE', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Sri Nagareswara Dall Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BALAJI PINDI MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateshwara ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai ganesh dall mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sree jwalamukhi foods', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREENIVASA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Hanuma Venkata Sai Dall Enterprises', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NEW VENKATESHWARA SEEDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS SAYED MASTHANI FLOOR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VEKATESWARA TRADERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATA SAI DALL PRODUCERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'marripudi madhava rao', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sudhakar Farm', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kandregula Surya Venkata Trimurthulu  Poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Annapurna Dall Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'swethe poultry forms', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satya sai foundary', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji Poultry', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ANIMAL BREDDING& MOLECULAR KITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vinayaka cattle feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SASISRI EXTRACTIONS LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SS FARMS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gentils Organics Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tanashvifeeds', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VEERANJANEYULU FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Argo treders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'LAKSHMI SAI INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA SUPPLEMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'T T S Rayudu Poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'EVERMARK NEUTRACEUTICALS LLP', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'vetoquinol india animal health pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NUTREN AQUA BIOTECH INDIA PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakka poultry feed', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LOTUS MINECHEM RESOURCES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padma Mini Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BIODE TECHNOLOGIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARSHA AGRICHEM AND SUPPLIMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'reddi adhinarayana rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi srinivas industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Manohar Naidu', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARINI GAJARAJU', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Bhaskar Naidu poultry form', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gowri Shankar model and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HARITHA FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'DANALAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'by reddy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Priyanka Agro Farms', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'HERITAGE FOODS LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Karthikeya Agro Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rajkamal Poultry and Cattlefeed', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '34']
[' Industry Name ', 'DEEKSHA FEED SUPPLEMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'DVL Kanta Rao and Sons', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PS BIO LABS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Pavan poultrys', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Murali krishna feeds', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI GANAPATHI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VELU MURUGAN RICE HUSK AND OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Animal Feed Supplements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tanguduprakashrao cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BHARATHI PULVERISING INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mahalakshmi oils private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sarada Agro induaties', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Harsha Poultry farm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE KRISHNA FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijayalakshmi poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri srinivasa oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Subhashini Oil Mills Private Limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIMALA FEEDS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAIBABA ORGANIC FORM', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'M S SRINIVASA POULTRY HATCHERIES AND FEED MIXING PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA RATNAMMA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VEDHAVATHI FORM', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ome sri sai venkateswara poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE NUTRI FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'poultry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata lakshmi poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SMS TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'CJB Poultry farms', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NANDINA POUL TRY COMPLEX', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LEENA AGRO INDUSTRIES CAREOFF SIRI AGRO VIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KOMATIRAO FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Lakshmi Venkateshwara Solvent Extractions', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SIDDHARTHA FEEDS AND SEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Padma Srinivasa Poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'EFFICIENT AGRICHEM PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'varma industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAI DURGA BHAVANI POULTRY FARMS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Nexus Feeds Limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA RAMALINGESWARA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri kodhanda Rice and oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Raja Rajeswari Modern Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'HI TECH PHARMA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI BHARGAVI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'P Pattabi Reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramesh poultry', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ganesh modern rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'CPF  INDPVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Royals marine food private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SIVA RAMAKRISHNA GANI OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ashoka poultry', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GANESH OIL ROTARY AND DAIRY FEED PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI AQUA FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Eswar Food and Feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sai baba rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GALAXY FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NUTRI FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Agencies', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dandamudi Balarama Krishnaiah', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NG PHOSPHATES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'New suresh modern rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'cs jagannadan chetty rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Bharath Traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Navata cattle feed', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KAMADHENU FEEDS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI URUKUNDA ERANNA SWAMY INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAMATHA BROILER FARMS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'JHM COTTON SEED MiLL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LOKESH AQUA PRODUCTS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GOLDEN SCAMPI FEEDS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'P SUBBARAJ AND CO', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Intronlifesciences', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'YARLAGADDA FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'AMMA SEEDS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mrs Ganesh poultry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi poultry feeds', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'TAGOOR AQUA TECHNOLOGIES PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Delinters', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Veeraiah Non conventional power projects limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MANGARAO PAULTIRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'balaji Colton plus', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI NAVATA FEED MIXING PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'varshith aquavet', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ms sri jayalakshmi strach products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'oxenvet nutraceuticals', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SDC Greenmax Feeds', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'CRVIN BIO PHARMA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srivenkateswaracattlefeed', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Bhaskara feed mixing plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'valvin nutraceuticals', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kasireddy bala lakshmi narayana poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata ramanja eya traderers', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DS TECHNO FEEDS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshminarayana poultry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'M S SANTHOSHI MATHA FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'KANAKA DURGA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata kameswari rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhagya Lakshmi Floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Maruthi poultry form', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANASA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srirama milling rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Peevee Pharma and Feeds Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJENDRA OIL PRODUCTS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'RAVI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Veeranki Anjana devi', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ULTRA TECH MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'APL ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Aquatic feed Cattle feed Poultry feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'HINDUMATA BACKERY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k jayashankar mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S V Cake magic', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'durgamanikanta sweets and bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Rasoolbe bakery', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'Sri Manjunadha ENterprise', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri natures best bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Bengalur Ayangar Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI MANJUNADHA BANGALORE IYYANGAR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI MANJUNADHA BANGALORE IYENGAR BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramanjaneya biscuit bakery', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri manjunatha Bangalore ayyangar bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SLV BENGALOOR AYANGAR BAkERY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMARAVATHI BAKERY AND PIZZAS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI PRIYA FOODS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Sweet and Bakery', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Bakery', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kismis fruve', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Manjunadha Bangalore Ayyangar Bakery', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SATYA KRISHNA FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lamsa bakery', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RR FOOD PRODUCTS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI KALPANA BAKERY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BANGALORE  IYYENGAR BAKERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kondru Gangaraju Bakery', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thrupthi food villa', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SLV AYYANGAR BAKERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'banglore bakery', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SANVEE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI VENKATA FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manchuri sreeramulu', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI MANJUNATHA BAKERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AMIGOS PIZZERIA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'C M Bakery TPT road', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jyotiram  sweets and bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Madeena Ice Factory', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri maruthi bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SSM BACKERY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'QUALITY SWEETS AND ICE CREAM', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Manjunatha Bangalore Bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DURGA BHAVANI BAKERY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BAKERY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sulochandra foods Private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi Venkateswara Bengaluru ayyangari bakery', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANATH RAO BREAD MAKING', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JMJ FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS BAKERYDILIGHTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ICE LAND', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BAKERS PARK', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHIVAM BEKERY and SWEETS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Shivaji bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PADMA BAKARY SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri manjunadha bangalore iyengar bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa sweets', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'New Bangalore Ayyangar bakery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Y B R BAKERY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mayuri bakery', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai Konark Bakery', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA FOODS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri meena bekary industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'narayana bakery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bakery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YADGAR SWEETS BACKERY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramdev sweets bakery', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AMBICA SWEETS AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nadigatla Sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi sweets and bakery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KGN SWEETS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'New SLbanglore ayyangar bakery', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VANI BAKERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K FOOD MAGIC', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JYOTHI SWEETS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bangalore Iyyengar Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASAN NALINI VILAYANUR', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'srilakshmi janardhana venkateswara banglore Iyengar Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PUSHPITHA IYYENGER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Nagarjuna Parkland Bakers', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'bread world', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'pydiraju moori company', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R J  S SWEETS  BAKERY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'ROYAL BAKERY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jagadambha deluxe backey', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M F FOODS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'SRI MANJUNATHA BANGALORE BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'dayaram sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MANASA CAKE WALA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SIVA DURGA BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka Durga sweets and bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI AMBIKA SWEETS AND BAKERY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Bakery', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KK BAKERY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUNRISERS ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI  BALAJI SWEETS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'umadevi twins backery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BAKE MY WISH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Madhuri Ice creams', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Grand foods Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Durga Bavani Sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lova Reddy Bakery', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'vishnu priya bakeries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALIFA BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sai Ram Sweets  and Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kalyani sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI JANARDHANA BANGALORE AYYANGAR BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MSR SWEETS AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Bala Ganesh Appalam', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Babu bakery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEW VIJAY FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Divya foods', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AADHYA BANGALORE IYENGAR BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bangalore aiyagar bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE BHAVANI SWEETS AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshmi rama sweets and bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara New Bangluru Ayyangarar Bakery', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tanvi foods India limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Lakshmi Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kadapa sweets', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'laxmi Venkateswara banglore iyyangar bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara biscuit factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABU  SWEETS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARTHIKEYA CONDIMENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri ayyappa Swamy bengalooru bekary  sweets', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Sai Manikanta Agency', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM SRI LAKSHMI VENKATESWARA HOT CHIPS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar biscuits and confectionery works', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Quality chips', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Madina Bakery 2', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chalapathi Sweets and Bakery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sankar biscuits', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ms Ambica Backery', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Asopa foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '19']
[' Industry Name ', 'RAMAKRISHNA FOOD PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kwality sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Mikki ganesh food products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Madina Bakery 1', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GANESHA BAKERY ZONE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRISAI BAKERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vijaya enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kothapalli sweets', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'NAMO FOODS NEAR BYPASS ROAD CHANDRAGIRI', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'sri meena foods', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'chowdeswari bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AMBICA FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Saptagiri Food Products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '60']
[' Industry Name ', 'Vasavi kirana  Fancy Xerox machine', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARIKA FOODS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'CAKES PLAZA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI BALAJI SWEETS AND BEKARI', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'venkateswara bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'royal snacks', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA FOOD PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rafi seven star bakery', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAHASRA FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SACHITH INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nava bharat agro pro ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Cakes Paradise', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'siri gayatri bakary', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri srinivasa sweets and bekary', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANJANI FOODS LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '63']
[' Industry Name ', 'MONDELEZ INDIA FOODS PRIVATE LIMITED - Expansion', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery & confectionery units with production capacity >1 TPD', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '240']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA MANUFACTURERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SURYA BAKERY  CHEKODI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ASWINI GHEE SWEETS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAKSHNA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sruthi ghee sweets', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nadi gatla vari Mana bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Siva chaitanya agro industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'Sri jai maruthi bangalore iyengar bakery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DIL DAAR SWEETS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Muthu lakshmi sweets', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Peddina Sai Lakshmi', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jamie venkata Ramana', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Bengaluru ayyangar bakery', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PULLAIAH SWEET STALL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'bhuvaneswara sweets snacks', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESH SWEETS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'CHP CAKE CORNER SWEETS AND BAKERY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA SWEETS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'priyanka bakery', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Samco food tech', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Modern Food products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'flour mill and karkhana', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA COVA MAKING AND SUPPLIER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SWEETS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Rada Krishna Sweets', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Siridi Sai ice Factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vaishnavi sweets and bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAZA FOOD PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jamal Basha Sweets', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MOUNIKA SRI DURGA BHAVANI SWEETS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI SUDHA SWEETS AND BAKERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'bakery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEW CHITRA SWEETS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVARAMA KRISHNA SWEETS AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bengulore ayyangar backery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJAMATHA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI SRI SRI SIVARAMA SWEETS AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'RAJI CONFECTIONERY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'chandu sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Lakshmi Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GAGARAJU SWEETS AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SANTOSH KUMAR BAKERY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA DURGA SWEET AND BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmiganesh bakeries zone sweets', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI NOOKAMBIKA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Yasin Bakery', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vijayawada Home Foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Hanuman sweets', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Just Baked Bakery Manfacturing Unit', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri durga sweets', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Manikanta sweets and bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K Mallikarjuna Bakery', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri bhairaweswara bangalore ayangar bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RASAPOORNA FOOD PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAVAKUSA SWEETS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Ganesh Sweet and Hots', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Nadigatla vari Sri Krishna satya sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anbika sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gopal sweets and tea stall', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Eswara sweets', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri subramanyam agencies', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi balaji bakery and sweets', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAHUL INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KUBENDRAN SWEETS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'OM SAI FOOD PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri bakthanjaneya sweets karkani', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RK food products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri Lakshmi Bhavani sweets', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKAT SATY CHEGODI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Hari Hot and sweet', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BHARATH VINAYAKA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Naga sai food products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Girish Trandings and co', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Sai Kerala special hot', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Melba Buns factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MR Sweets', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI PRASANNA DURGA MAALLESWARI SWEETS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkataramana sweets and cool drinks', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Viswanadha Sweets and Fancy', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJYALAKSHMI FOOD PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURYA SWEETS BAKERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Jyothi Enterprise', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'MILAN BEKARY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI PAVANI INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Nandini Bakery', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI VIJAYASAI FOODS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'CREME FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Rathna bee keeping and Honey processing industry', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bee Keeping Honey Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MYZUNO THE BREW PUB', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Beer', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '35']
[' Industry Name ', 'SRI VENKATA RAMANA MINERAL WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRSANNANJANEYA MINERAL WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOVILLA VENKATASUBBAREDDY PURIFIED WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'royal water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga minral water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PODARAN FOODS INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '29']
[' Industry Name ', 'Durga Jala', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vimal bottling company', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'AMMA RO WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kumar Bottling and co', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MSR industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI KIRAN BEVERAGES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Bismilla fougiya trust', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SM INDISTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI AQUA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Alla verayamma Aqua RO water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GRACE PURIFIED WATER AND SODA', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA PRIYA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sekhar Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'SJ Bevarages', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'padmasree water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'janga ramulama surakhitha water scheme', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'karnati narayana reddy water plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARASWATHI Purified Drinking Water', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri balaji enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANGOTRI TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BEVERAGES PACKAGED DRINKING WATER SODAWATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BRIQUETTE INDIA COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri maridi BioTech Private Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tejaswi biofuels', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri Agro Bio fuels', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ram Bio Fuel', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GANAPATHI SAI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Msg biosolution private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI AVATAR VIJAYA GREEN ENERGIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S V INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Narayana agro industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkateswara eco fuels', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KAARTHIKEYA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MIHERA BIOFUELS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SHIVA SHANKAR ENTERPRISES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI BALAJI BIO BRIQUETTES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS VIGNESWARA BIO BRIQUETTES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RAYALASEEMA FUELS  BRANCH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MAHAGOWRI UDYOG', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS BRIQUETTE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sowbhagya Agro Food Products Pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BIOMASS POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANAKADURGA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BISCUITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkatakrishna food products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BISCUITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ROYAL FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BISCUITS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'R Venkata Ramana Agencies', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BISCUITS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'murali biscuits', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BISCUITS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Dhanalakshmi Enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BLENDING & BOTTLING OF IMFL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAN BREWERIES AND DISTILLERIES LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BLENDING & BOTTLING OF IMFL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'B V S DISTILLERIES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'BLENDING & BOTTLING OF IMFL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '33']
[' Industry Name ', 'PSK ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Blending and packaging of Tea', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi ganapati mini boiled rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA VENKATASATYANARAYANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'vijaya vinayaka modern boiled and raw rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Venkateswara Oil And Floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA KAMAKSHI RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata Saikrishna traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RVS PAR BOILING RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI KARTHIK RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI LAKSHMI DAL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MUNAFVALI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RamaKrishaiah Raw bollied Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PREMA SAI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SASIKALA MODEL RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ARUNA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'LAKSHMI SREYA RAW RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata ramana rice tech', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga malleswara raw and boiled rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Krishna Raw and Boiled Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Devendra Binny and Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri SAINATHA MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Vijaya Lakshmi rice and flour', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'HANUMAN RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Maruthi Modern Rice Mill Lessee Sri Srirama Rice Products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'SRI VENKATA PRASAD RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI JANARDHANA RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI JANARDHAN RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATADRI PARA BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA PADMAVATHI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI GOVARDHANA RICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Boiled Rice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sandhya ice candy', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHOUDAMMA ICE CANDY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Hema Ice Candy', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal ice cream', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri saikrishna ice factory', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBHANI ICE CANDIES AND COOL DRINKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri manjunadha Enterprise', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Candy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ravi Kishore cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'saikrupa cashew company', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi venkateswara cashews industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'cashew endudstry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'cashew industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI GHEE STORES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'cashew nut', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri padmavathi small cashew processing unit', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Vijay Shankar cashew', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ISHA FOOD PRODUCTS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW CHIKKY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAXMI CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAA SHIVA PRIYA CASHEW S', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SIVA SANKARA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI GAYATRI CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri indri cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vishnu agencies', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara cashew company', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri balaji Cashew company', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UDAYA CASHEWS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara cashew manufacturers', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI SAI GANESH CASHEWS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SAI SRI VENKATA MAHA LAKSHMI CASHEWS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Sri Gopala krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Jyothi Cashew', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri gayatri cashew industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri murali krishna Traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'srilakshmikanthm cashew INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'India food exports', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA SIVA SAI CASHEWS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'LAVANYA BEAUTY PARLOUR', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'PRAGATHI FOOD PROCESSING INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'VIJAYA DURGA CASHEW INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'JAYALAKSHMI CASHEW INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'PSR CASHEW PRODUCTS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '17']
[' Industry Name ', 'ambika cashew industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'PRAKASH EXPORTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Simhadri Food product', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bhagya Lakshmi Cashews Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji processing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Sai durga food product', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI THULASI CASHEW MFG INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'AMBICA CASHEW PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'sri vinayaka agro foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '25']
[' Industry Name ', 'K D S CASHEW CO', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Lakshmi cashew industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'KRISHNASAI CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'shell phenol industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Vijaya Rama Krishna Cashews', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SAMBA SIVA RAO PROCESSING', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gowri Shankar cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '22']
[' Industry Name ', 'Tirumala cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '250']
[' Industry Name ', 'Beenadini Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmitayaru industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'SVL CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANNAPURNA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'apparao cashew cutting unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nature cashew industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '34']
[' Industry Name ', 'SUN FOOD CORPORATION', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'Leela Krishna Cashew processing', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'aadya sri cashew industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VEENKATA SURYA ENTERPRISES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Surekha Cashew Nuts', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LALITHA CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASTER CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Sri Shiva Shankar cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri lakshmi madura cashew nut processing unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Lakshmi Cashew Processing Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Gupta cashew industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMI TRADERS CASHEW PROCESSING COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'mana enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'GAYATRI CASHEW PROCESSING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'VR traders', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Sri jai santhoshi maa cashew industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Venkateswara Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI CASHEW INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri sai durga cashew industrt', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'veera venkata laxmikantham terrace', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'Lalitha Parameshwara Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NETHIKONDA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri vijaya durga cashew industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI GAYATRI CASHEW MARCHATS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'YSR CASHEW INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS PRAKASH EXPORTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '170']
[' Industry Name ', 'SR Cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dasanjaneya Cashew Processing Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Parvathi Cashewnet Processing', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SUN FOODCORPORATION', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '92']
[' Industry Name ', 'VIJAYA MARUTHI TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'sateesh gold', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Jai Hanuman Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sun food corporation', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'vardhans cashew industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Sri Sai Sharika Cashew Processing Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '31']
[' Industry Name ', 'satyamani industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SOWMITHRI CASHEW NUTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri maha laxmi traders', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUN FOOD COORPORATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'india food export', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'maddala rambabu cashew nut merchants', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vizag exports', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '70']
[' Industry Name ', 'Sun food corporation Pvt limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '95']
[' Industry Name ', 'kamisetty venkata durga rao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi cashew merchants', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'UPPAGANRI REVATHI', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI CASHEW NUTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '31']
[' Industry Name ', 'Savithri Cashew Industty', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'INDIA FOOD EXPORTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '175']
[' Industry Name ', 'SOWBHAGYA EXPORTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '106']
[' Industry Name ', 'VENKATA SURYA CASHEW NUTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'addala bala krishna', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kumpatla yesu prasad', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA CASHEW INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'KONDALA RAO ADDALA', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nimmala rama tulasidas', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kumpatla narasimha rao cashew nut industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMA TULASIDASU CASHEW NUT PROCESSING', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kumpatla verra venkata satya srinivas', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI CASHEW TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'BELLAMKONDA VENKATESWARAO', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VINAYAKA AGRO FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '22']
[' Industry Name ', 'SRI MAHALAKSHMI CASHEW NUT INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'cashews industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Cashiew nuts processing unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkatarama Cashew Works', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Siva Sai Trading Company', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'bellamkonda bala Krishna cashew nut business', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri Cashew Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '32']
[' Industry Name ', 'Sri kanakamahalakshmi cashew industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA CASHEW INDUSTRIES PRO UTAKOTI SRIDHAR ANURU', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SRI SIVA RAMA KRISHNA  GENERAL MERCHANTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'prakash exports', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ganga badhra niranjan traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SRINIVASA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'Jyoti cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TEJA CASHEW CUTTING INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sai balaji agro foods', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi cashew general processing', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI CHANDRASEKHARA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'D S R Cashew Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri satya sai cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga bhavani traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri sitaram cashew processing', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'SRI BALAJI PROCESS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'SRI VASAVI SATYA KRISHNA CASHEW INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI DURGA CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Vagmisun Cashew Integrated Solutions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AMARAVATHI CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Pavan sai srinivasa cashews', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'RADHA KRISHNA CASHEW INDUSRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'STARRH ALMOND KING PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri vaghdevi cashew company', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'rajkamalcashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'vijayalaxmi cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRISIVARAMATRADING COMPANY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Satya Sai cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATAPARVATHI CASHEW PROCESSORS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sridevi srinivasa industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'bhoolokamatha cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'A SRI CASHEW NUTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA CASHEW NUTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ROOPA CASHEWNUTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VINAY KUMAR CASHEW TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SAI GREESHMA CASHEW NUTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESH CASHEWNUTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SADGURU SAI CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'India food exports', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '119']
[' Industry Name ', 'SRI BHAGYA LAKSHMI CASHEW', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANESH CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KSM Cashew Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'dakshayani cashew karnal marchent', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVYASRI CASHEWNUT INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'annapurna cashew industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'satyasrinivasa cashew industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '21']
[' Industry Name ', 'Sri sai Kamal cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'TEEGALA CASHEW INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'sri anjanaya cashew traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'laxmi venkata malliswara cashew industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '19']
[' Industry Name ', 'Vijaya kiran agencies', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'JYOTHI CASHEW TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Lakshmi Ganapathi Cashew Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Giri traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SRI VARALAKSHMI DEVI CASHEW INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'needa victuals private limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI DEVI CASHEWS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'balaji cashew mini processing unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'North east Impex Private Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'ANUSRI CASHEWES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHANDRA MAHA LAKSHMI CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'VASAVI NAGENDRA CASHEW INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SINGAMMA CASHEW INDUSTRY PROCESSING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LALITHA SAI BALAJI CASHEWS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '32']
[' Industry Name ', 'SWAMI AYAPPA CASHEWS INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Anjani Cashew Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'msgiricashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'Sai Srinivasa Durga Cashew Industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA CASHEW', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'prasad cashew industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI ANNAPURNA SAI SARASWATHI INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '53']
[' Industry Name ', 'RAMAKRISHNA CASHEWS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'sri annapurna sai Parvati industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'sri mahalakshmi agro foods', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Victory cashews', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'ADITYA CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI GANAPATI CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI ANNAPURNA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'INDIAN FOOD EXPORTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'MK CASHEW INDUSTRUES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sss international expo private limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Bhagyalakshmi Cashew Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA CASHEW FACTORY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'sri venkata jagannadha cashew industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATA GAYATRI CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JAI VASAVI MATHA CASHEW PROCESSING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Devi Cashew Industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VANKAA AGRO FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '36']
[' Industry Name ', 'shobha agro foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Ganapathi Agro Industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATA SAIRAMA CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Lakshmi Small Cashew Processing Unit', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MURTHY CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Prakash exports', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '250']
[' Industry Name ', 'sri lakshmi cashew industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ACAJU PROCESSING PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '35']
[' Industry Name ', 'Sri Balaji cashew nut products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Thara Cashews India Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Arle Cashew private ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri venkateswara cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'SATYA SURYA TOWERS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '70']
[' Industry Name ', 'kamal prakash enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Vijaya cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'dhanasri enterprises palasa', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Sai Ganesh Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'surya cashew traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATESWARA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI CASHEW INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Siva Sai Cashew Industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'SRI CHANDESWARI MATHA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'vaishnavi matha cashews', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Dhanyalakshmi Cashew Industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA CASHEW INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'JAI CHIRANJEEVA CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Santheeswara Cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Chandeswari cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '25']
[' Industry Name ', 'Sri venkateswara cashew industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SUN FOOD CORPORATION', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW NUT SHELL OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'cashew unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW NUT SHELL OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rajasree enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW NUT SHELL OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW NUT SHELL OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'ABHAYA SAI D-OIL CASHEW NUT SHELL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW NUT SHELL OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'padmavati feeds', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'NESTHAM AGRO PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HANUMA SAI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'The kommugudem LSCS Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI BIO TECH', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHIDAMBARAM POULTRY FEED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMAIZE SILAGE LLP', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VSS OIL TRADING MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'RAITHU NAGALI FARMER PRODUCER COMPANY LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cattle Feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI DHRITHI FRIED GRAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'chana dal processing unit', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'UMAA MALLIKARJUNA FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHAPATI PAROTA MAKING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Teja foods', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHAPATI PAROTA MAKING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'K K CHILLIES TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'Sri Mahalakshmi flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri tirumala industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KRISHNA SPICES PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jayalakshmi flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DUDAKA CHINNA VENKATESWARLU', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Sai Surya traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa chilli and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A LAXMI NARASHITHAM FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna chilli powder mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SESHA SAI CHILLI POWDER UNIT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'nandeswara flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Balaji Flour And Oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANDULA MALLIKARJUNARAO', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T Srinivasa Pounding Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PATTABHIRAMA RICE AND OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JANAPAREDDY RAMALAKSHMI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tiger spices', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jorige venkateswarao floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Manidurga floor mills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srisaila Mallikarjuna Pindi Machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopal setti Vasantha Kumari', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PANDURANGA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SAI FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri mahalakshmi mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOPALA KRISHNA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai baba rotary oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri jyothi krishna traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya manikanta prabhu flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BATHARAJU BHANU PRABHU RAM FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi ganesh traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri gangadevi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Nanda Kumar Flour machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUJATHA  SPICES INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PRAKASH MODERN MINI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rammohan flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'baba flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMALESWARI FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai neeraja flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v seetayamma rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sredevi Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Balaji flour mills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'verra durga siva jyothi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri srinivasa rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri parvathi parameshwara flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'uma Nageswara chilli pounding works', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Subrahmanyeswararao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P v v pushpavathi flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NOOR CHILLI POUNDARIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHAGYA LAKSHMI FLOUR MILL EXPANSION', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'sri adilakshmi industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Srinivasa flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHANASRI KARAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kalki baghavan ice canteen', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai durga ice factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Nagavalli Ice Factory', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOOSA ICE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HAIMAVATHI ICE PARLOUR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GS ICE FACTORY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYALAKSHMI ICE COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri suvarneswara ice parlor', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V V K ICE CREAMS DNO 16 200 DEVARAYA REDDY STREET', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V K Ice creams d no 16 206 devaraya reddy street', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saranya ice candy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ice company', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Shaik Abdul gani ice productions', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'rajarajeswari cool ice', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman Fabrics', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara ice factory', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA COOL DRINKS AND PAN SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KANAKA DURGA ICE COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kranthi ice plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nageshwari Ice company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Geetha iceparall', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Saty Chandra Ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Archana ice creams', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATARAMAKRISHNA ICE PARLOUR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Janakamma ICE Factory', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Chilling plant and ice making without use of ammonia', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siddartha Ice Factory', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'noThrupthi Frozen foods', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI NARASIMHA FROZEN FOODS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'HEMA SEA FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENNELA ICE CREAM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Chandini ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'suresh ice cream shop', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Ganesh Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAI SREE RAJARAJESWARI ICE PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BABU ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sree Lakshmi Venkateswara Ice Factory', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri satyadeva Ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata lakshmi ice plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri vijaya lakshmi ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara cold storage reddigudem', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Padmavathi Cool drinks', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SURANNA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VABILISETTY ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAI BABA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Sivannarayana Ice Plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIJAYALAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAABIR AND JKD ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GEETHA ICE CANDY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PADMAVATHI COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'uday kiran ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Durga  Cold storage Pvt limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MEENA ICE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'North coast Integrated food park pvt Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRAVANI ICE PARLOUR', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kundana ice candy company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Aisha frozen foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Swathi ice plant prop lakshmi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SJ ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE VINAYAKA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DIVYA ICECREAM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ms Navarang Ice plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SIVAMANI SRI GEETHA ICE PARLOUR', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'viswanadha ice factory', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Vijaya durga ice parlour', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya durga super cool drinks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Ganapathi Saw mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'rajyalakshmi ice parlour', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara ice factory', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GANGADHAR ICE FACTORY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Muneer Ice Factory', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRR ICE  Factory', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BABA ICE CANDY INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'WELCOME ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mohaboob moula Ice Company', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIJAYA LAKSHMI ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhanyalakshmi Cold Storage Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Golden ice creams', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MAGESH ICE CREAM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kundeti Ventures Pvt  Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'chocolate making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS ASHEER FOOD PRODUCTS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'chocolate making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri pasananjaneya mini rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CLEANING GRADING STORAGE OF GRAINS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'manufacturing of agarbatti factory', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CLEANING GRADING STORAGE OF GRAINS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi venkateswara flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CLEANING GRADING STORAGE OF GRAINS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'keseva enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CLEANING GRADING STORAGE OF GRAINS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SURYA NARAYANA works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KASINADH TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata balaji decording mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ms Sri sudha sesamum Agro foods and exports Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri vigneshwara gingily oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'COCONUT processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GOPAL COCONUT FLAKES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'COCONUT processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEKHAR COCONUT TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coconut value added products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coconut value added products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Konasseema Agro Products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coconut value added products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Sri venkateswara flour oils and generals new', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coconut value added products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chandrasekhar coffee works', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARAKU A1 COFFEE AND GENERALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri raghavendra coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAYHAN COFFEE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA KRISHNA COFFEE CO', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'Kanaka Durga coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'j h Nagaraju rao', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara leela coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALLABACHSH COFFEE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree satyanarayana coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Araku valley coffee house', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bhagya Lakshmi coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji coffee works at thotaveedhi', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAXMI SYAMALA COFFEE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shivaji coffee works and electricals', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMRUTH CHICORY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Nava shakthi coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coffee seed processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYA DEVA ROPES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Coir Extraction from Coconut using Dehusking Machine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ramachandra floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIGHNESWARA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri appanna modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'anjanayya flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Swaroop Foods', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S RUQSANA PARVEEN', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pindi mission', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi Narayana Oil and Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA KRISHNA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'White', ' Total Workers ']
[' Industry Name ', 'sri lakshmi oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shek Fathima flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ranganatha coffee and flour industry', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nimmala Karthik', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganesh grinders', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CORN MILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HASSAIN FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CORN MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GODAWARI UDYOG', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CORN MILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'MS KAMAKSHI COTTON INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cotton Delinters', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'jyoti ginning mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'COTTON DELINTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SREE BHAGYASRI GINNING MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'COTTON DELINTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Ruchi Soya Industries Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Crude Palm Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '50']
[' Industry Name ', 'Avyaktt oils private limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Crude Palm Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavishya edible oil refinery', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Crude Palm Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Mahalakshmi dairy products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Showrya Frozen foods', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KONARK FROZEN FOODS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'creamline dairy products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hatsun Agro production', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Harini Dairy Foods', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sreeja Milk Diary', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hatsun agro products limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVIPATI AMARESWARA RAO', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gayatri dairy', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijayalakshmi Ice Parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya Durga  frogen foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Vishaka Milk Producers Company Ltd', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '41']
[' Industry Name ', 'I FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '26']
[' Industry Name ', 'Brothers Dairy milk products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'sairam', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMI FROZEN FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Simrani Ice Factory', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Navya frozen foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SPECTRA FOODS  BEVERAGES P LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '123']
[' Industry Name ', 'OMM VENKATESWARA FROZEN FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'Bismilla ice company', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara dairy milk products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI RAMA ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI MARUTHI DAIRY MILK PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'zeal dairy products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '12']
[' Industry Name ', 'J P DAIRY FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANNOOR ICE CREAMS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ARABIAN CLASSIC FOOD PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Mukkoti milk foods', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'NELAKURTHI NAGA LAKSHMI SWEETS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vision India Dairy Products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri sreenivasa icecream private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'S   LIKITHSAI DAIRY PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dairy and dairy products (small scale) (capital investment on plant & machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'TIRUMALA DALL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIJAYA DURGA DALL AND GENERAL MERCHANTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara trading company mini floor and Dall mil', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Srinivasa Dall Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'venkata sri anjaneya dhall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahalakshmi dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'modinbasha flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi gills and Dall mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagaraja pindi millu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI BALAJI INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Madhuri Trading Company', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KRR DAL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vasavi dall mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'venkateswara traders', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA VASAVI DHALL AND RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VASAVI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAMA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA OIL AND FLOUR MILL AND GENERALS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Krushna Krupa Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shankar dal and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GENERAL TRADING NEW FIRM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri subha rajeswari Ayyappa dal industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GMR DALL INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri Kanaka Mahalakshmi Dall mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi dal mill penukonda', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Shanukha Dall producers', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUDHA DHALL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rajyalakshmi Dal mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHALAKSHMI DHALL AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH DALL GENERAL MERCHANTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi rama doll mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI KRISHNA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI FRIED GRAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI NARAYANA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'lakshmi narayana dal producers', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MURALI KRISHNA ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'flour mill 3', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHAGAVAN TRADING COMPANY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA SAI DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vasavi Dall Mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S LAKSHMI DALL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BUDIDA SAMBASIVARAO MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satyavathi floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sankara Dal and Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SP srinivasa dall mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'TARRA JAYARAM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'ayyappa dall mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'KARTHIKEYA DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SAILA MALLIKHARJUNA DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SHANMUKHA SAI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BALAJI DHALL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KVeerabhadra Rao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VAISHNAVI TRADING CORPORATION', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Anu generals', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVI INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'badu floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GARUDADRI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'lakshmi durga flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUNDA VENKATESWARA RAO RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Pindi millu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VISHNU VANDHANA DALL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KAMAKSHI DALL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SIVANI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'sri lakshmi dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rajeswari dall producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sree SAI Teja dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yakkala traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ms KANKADURGA MINI DAL MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sarvana Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI RAM AND CO', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kubera dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MALLUPALLI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'HINDUSTAN AGRO PRODUCTS LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SURYA DALL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATESWARA DALL PRODUCERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGA DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA SIVA SAI ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MAHALAKSHMI FRIED GRAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI PARAMESWARI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA SAI AGRO INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SATYADEVA DALL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BALAJI DALL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SEETARAMANJANEYA DALL  AND FRIED GRAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SURYA DALL AND FRIEDGRAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SARAN DALL  PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'chudamba dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTA SAI DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'YSR Godums', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Lakshmi Dall Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYADEVA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VENKATA LAKSHMI SRINIVASA DALL PRODUCERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARLITHA TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'LAKSHMI VENKATESWARA DAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'LAKSHMI MANOHAR TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SATISH DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMANA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VARALAKSHMI DHALL AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA SAI DAL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIGNESWARA  DALL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAHAMTHULLA DALL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V B DALL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA SAI DURGA DALLMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VRNKATESWARA DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Venkateswara Dall Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SWETHA DHALL AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lalitha dal producers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAFA DALL MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ms SRI BALAJI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI TEJA REDDY DALL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lev True Wellness Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dehydrated veg and Fruits Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'anjaneyaswamy agro industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'DELINTERS COTTON SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIGNESWARA AGRITECH', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'DELINTERS COTTON SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Mini Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RAM OIL MILLS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'DECON AGRI OILS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'TAGOOR AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'SANTHOSHIMATHAA EDIBLE OILS REFINERY PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '122']
[' Industry Name ', 'SRI RAMAKRISHNA OIL MILLS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'DEVI MURTHY INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'paparao water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J J MINERAL WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'TSM Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EDIBLE WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bluecraft Agro Private Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKAHMI SRINIVASA RICE TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE VISWAAS AGRO BIOTECH INDIA LIMITED', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Shree KARTHIK agro industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ms NANDI GANESH TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATADRI OILS PVT LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '30']
[' Industry Name ', 'MADHAVI EDIBLE BRAN OILS PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '74']
[' Industry Name ', 'FLAVONES EXTRACTS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION AGRO PRODUCTSOF', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '30']
[' Industry Name ', 'nagasri floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF COCONUT VALUE ADDED FOOD PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI BABA OIL FLAVOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF COCONUT VALUE ADDED FOOD PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyalakshmi babi oil expeller', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF COCONUT VALUE ADDED FOOD PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SOCIAL AGRO INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'VIJAYA SARADA DELINT SEED MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'siri organic oils', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA AGRO PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'tirumala cotton  agro products pvt ltd-OIL mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '100']
[' Industry Name ', 'Sri Sai Lakshmi flour mill and Works', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ARJUNA SOLVENT EXTRACTION PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'EXTRACTION OF OIL FROM COTTON SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '70']
[' Industry Name ', 'Adilakshmi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri chakra warehouse', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Tanuja ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE DURGA SEEDS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI BALAJI CASHEW INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ac cold storage', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA COLD STORAGE', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'aswaryaambica industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'UNIVERSAL AGROVET', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Feed and Fodder Production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pamas Vet Pharma', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SATYA FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GODREJ AGROVET LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI GANESH TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Durga hechary', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srimannarayana traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Aseervad Feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI GANESH CATTLE FEED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SHRI RAMALINGESHWARA AGRO FOOD PRODUCTS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Bhavani floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLAH MINI FLOUR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manjula Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srivenkateswara  flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagendra Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sadashivappa flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA CHALLARATNAM FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SVB Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kariveerappa floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivas Mini Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkatamallamma mini floor mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijayalaxmi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMACHANDRA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Satyanarayana Flour and Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vapllikatla venkaiah floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sampath Kumar floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VS Rama Murthy Floor and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VELUMURAGAN FLOURMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subhan Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiva floor Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAPURNA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkataramana floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dosapati eeswaraiah dall mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veeranjaneya oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SITA RAMA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Balaji floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANURADHA FLOOR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Devi flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suresh Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishna rotary and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'palapolamma flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi Srinivas flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Umamaheswara rao Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kasukurthi  yelia  flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S R FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai Raghavendra floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri BhagavadGita floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree veerabhadra oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narayana goud flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANJANEYA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MASHAALLAH FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi suryanarayana flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PNR FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sreenivasulu flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VANGAPATI FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Venkateswara Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P BANGARUSETTI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A gangadhara flourmill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA FLOUR  MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI RAM RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi  Narasimha pindi Miller', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chennayya Pindi marra', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA BHARATHI OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi ganapathi flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'veerabhadra flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vinayaka flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'padmavathi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sridevi Pindi Machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rudraiah mini flour mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI  DURGA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHESHWARI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Boppudi Floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Eswara flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'basavaraju', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kothanna flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gouni kesava reddy floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya Durga rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayalakshmi Rice  and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Durga  flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'floarmill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bapanna Dora flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIPREM FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Charan Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pavani oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pavan hotel', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara Rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri shirdi sai flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vellanki vv Satya Narayana oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai samba siva cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lovalakshmi Flour mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi prasanna flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suseela flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Nukambika Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri satyanarayanamma rice  Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NOOKARATNAM RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai krishna oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vanna Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T S GOVINDARAJULU', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A RAMASWAMY FLOUR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saithridhi flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Rohini FlourMill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kamaskhi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prathibha Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ameer flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Ramana Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Padmavathi Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satish Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEETHA RAMA RICE AND FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K SATYAM FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Marraju suryanarayana', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Khan flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jayalakshmi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI DURGA FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswarlu Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SYED RAHAMTHULLA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Baba Flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vemulapalli Ramadevi', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Ram Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RAO OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'mata flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRIKANTH FLOUR INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'sri sai krishna floremill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAVYA SRI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jaganna flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VSRA FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'radha krishna traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohamad kasim rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ganga Bavani pindi machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jesus flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madeena Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rakhaib Flour mills', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KARUNA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nageswari Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Reddinandini Floumill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkatesulu', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ri subramanyeswara swami flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'karegouda flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Oil and Flour Works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Devaraju Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Irshad Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MASTHAN BEE Grinding machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri prakash flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Thambi Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallikarjuna Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Malligarjuna flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M RAHAMTHULLA', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Santhoshi matha rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasareddy Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madhava raju flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar Srinidhi Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'erimiah floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'prabakar Naidu mini flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaheda Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Naseeb Jan Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mandli Dhanunjaya Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANJANEYA FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shafi mini flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Loukya general stores', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Soumya Pindi Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mannuru Masala and pindi mission', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kotha venkata ramana swamy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'T sunandamma', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pidapa siva narayana reddy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NOOR MOHAMMAD FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jaheera Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga srinivasa flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI RICE AND FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIDDA LINGAPPA MINI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jyothi flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MABUSAB FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Marutla Sivamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Venkateswara Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HEMAM KHASIM FLOUR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chandrakala flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAGHAVENDRA ENGINEERING WORKS AND FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maleswari Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ayappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Aliya Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ganesh Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANJULA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SADASHIVAREDDY FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'c anjinamma', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA  FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narayan Reddy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka mahalakshmi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Venkateshwara flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA OIL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parndhama reddy flour milling', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'padmavathi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jakka Satyanarayana flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkateswara flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagi Reddy floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGARAJU FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Giddappa flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Gangamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMU FLOOR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Chowdeswaridevi Mini Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SADASIVA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jogi lakshmi devi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vinayaka flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'chilli grindinding mission', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hussensab Flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amarvathi Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'naganagowda flour milling', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M Venkateswarlu', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PEDDAKOTLA SREERAMULU FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI FLOR PINDI MISSION', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshamana Murthy', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ysr floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopal Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Govindappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Annavaram Flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BABA SAHEB FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 's mahaboob flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA DEVI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUMARI FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI NARAYANA SWAMI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sudhakar Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narasimhappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BAKTHANJANEEYA OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagarajachetty Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahesh Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Wahab flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kilari Ramulappadu Rice and Wheat Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramaiah Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVI KANYAKA PARAMESWARI OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASHALLAH MINI FLOUR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patnana Srinivasa Rao Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Arun Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahalakshmi flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siva Shankar Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rathnamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KMVN Paparao', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gopal flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHANTHA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kullayaswamy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga malleswari flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayasree Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Haneef floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagaraju floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANJUNATHA SWAMY RICE FLOUR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J Venkataramudu Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sayyad Jani babu', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Ram Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narayana Reddy flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vinayaka flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Sai Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Revanna Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Narayanamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gangadharappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BASAVARAJU', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'G B VENKATESHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri ratna oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sheshagiri flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagaratnamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V LAKSHMI OILS  AND FLOUR MILLS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KRUPA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RATNAKUMARI FLOOR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUGUNA KUMARI FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nirmala flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thejaswini Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUKRUTHI AGRO INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Sitaram anjaneya industrial works', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva sankara flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajamma flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI CHENNA KESAVA GENERAL STORES AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI VENKATESWARA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHARIFF Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMA SATYA OIL FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KUNNIKERA ANJINEYA SWAMY FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Wet grinder and chilli grinder', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA PARVATHI FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'UMA MAHESWARA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ADIMULAM MANI', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI VENKATESWARA TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MURALI KRISHNA OIL AND FLOUR WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KANAKADURGA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Manikanta floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eranna Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Brahma Vishnu maheswara mini rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI OIL STORES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GRADING AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pulleramma flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DATTI SRINIVASA RAO FLOUR Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARA LAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amarana Venkata Rao', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Durga subrahmanyeswara flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUBRAHMANYESWARA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAJJI GOWRAMMA THALLI PINDI MILLU', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI RAJYA LAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K RAJAGOPAL CHETTY FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA      DRRGA   RICE M', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa Flour and oli mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chowdeshwari Four Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi sujatha  enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K V BADRAM OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkataramana mini floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kappala somulu son apparao flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAMOD KUMAR FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'grinding machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PK ANJANEYULU FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOWRI DEVI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ganapathi Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narasimha flour and expeller', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Rao oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA MANIKANTA FLOUR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Chilli Powder Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G jaganadha rao rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Palavalasa Varalakshmi Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kamadeva Jayalakshmi flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hanumanth grindings', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veeriah floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATAESWARA FLOR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHANKARAPPA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ratnam oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKADURGA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalakshmi Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai manikanta floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVVS Flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veera Venkata Naga peddintlamma flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sankar floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai durga flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Oil And Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGAA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'LATHA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi veera venkata satyanarayana floor and rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri sitarama oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa  flour and oil mill Uttarapalem', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara general stores', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'neelappa flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narasimha Swamy mini flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srivenkateswara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANJNAMMA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S SAIRAM FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chepuru Mohan flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI SAI FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jesus flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'absiba floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'truveni flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayalakshmi Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veera Gowri flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thunuguntla Chinnamma', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vigneswara floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkatrama flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OLD FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SITA RAMANJANEYA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'oduru Satyanarayana', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'raja pindimara', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANIKYAMM FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKADURGA FLOUR  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narasama Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Doorvasulu mini floor Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gopla Swamy floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Siva Santhosi Roopavani  Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIVA SURYANARAYANA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESWARA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJAKUMARI OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chalavadi Manikya Rao', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijayalakshmi Oil and Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms KUMARI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkatesh Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Oil Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagabusanam Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Y SRINU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATISH FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tummuri subbarao oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sridevi Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Narayana flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya flour and Oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A SUBBARAO', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P M V R C Rice and Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATARAMAYYA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNAARJUNA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Poodi Janardhana Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jindesha flour and rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri rama krishna floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RATNA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ganapathi Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinagasai oil flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rangappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manjunatha Mini Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SUPPLIERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narayanappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANYASI RAO FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA FLOUR  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DEVI FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Flour Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rajamma flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DOWPATI MADHAVI RANI FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GADUPUTI KONDAIAH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parvathamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J Seetharamaiah flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kamakshithayi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mangamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A LAKSHMANA MURTHI', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mamidipaka Nageswara Rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramalingeshwara flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi gingle oils', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GADUPUTI SRINIVASULU FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHADI AYYANNA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naayanamma flour milling', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bhavaiah flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata satyanarayana flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Alekya Mini Flou Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maha Lakshmi Flour and Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'subbamma flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi rotary oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karishma flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANJANEYA MINI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddeswara Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saraswathi Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Varalakshmi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SeethaLakshmi flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai Hind Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi Mini Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gurukrupa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chennamma flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rajeswari flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahalaxmi flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J Satyanarayana murthy flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vegullamma floure mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KOLLURU CHINNA PULLAIAH FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAVETI MALLAIAH FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi  Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ranga Reddy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYA SRINIVASA   FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkatareddy flourmill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOMMI ESARAIAH FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja Sekhar Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YAGATEELA SANKARAIAH FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswaraswami Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'grinder machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE AND FLOOR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatarami reddy flour  mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESWARAMMA  FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Seshamma Flour Milling', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rajarajeswari flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NANJUNDESWARA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivas Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Pindi Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Mouli  millu', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'kota kishore flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chappidi venkatareddy flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Seethraamanjanya Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'subbamma', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEETHA RAMAIAH FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramadasu  flourmill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMARA SARADA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Penchala Lakshmi Narasimha', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ram Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour mill unit', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ayyappa traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMA FOOD PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHALAKSHMI OIL AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BHADRAMMA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANAPATHI SAPTHAKANNIKALA MINI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RUPA DEVI FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NELATURU SUJATHAMMA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VEERADEVA NILAYAM Floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'cheeranjeevi flour mill 2', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKSHMI FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswar oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GVR Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Damodar Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESWARA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sailaja flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagamani mini floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N VENKATA KRISHNA RAO FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Meenakshi oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'flour mill 1', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'k Satyanarayana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri jayalakshmi flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri seetharamanjaneya flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jagadhamba general and Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'potnuri krishnamurthi flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Janardhan flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOUNIKA PINDI MILLU', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYAMALA  FLOW MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Lakshmi kanakadurga oil and General stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'y prathusha flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhuvaneswari Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA LAKSHMI DHANA RAMA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GANESH FLOUR MILLS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai pindmil', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N LAKSHMI TAYARU FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rani food grains and dal packing', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI PRASAD FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara flour and Rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkataramana modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANIKANTA FLOOR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri malleswari flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai baba flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'laxmi pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI NIRMALA JYOTHI FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka Durga', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vinayaka flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Subbarao Flour mil', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Poha  and oil flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanthamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sharon flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateawara flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanchamma thalli Pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'harinadha rao flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara pindi machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sesharatna traders   Satya Durga raw and boiled rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri srinivasa oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aruna Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sankarrao flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHUVANESWARI MINI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAMIDI VENKATESWARARAO FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJESH FLOOR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Lakshmi sheshadri flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai baba rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Venkateswara Murthy Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K S Narayana Floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G Vannuramma Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA FLOOR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'zilani flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parvathi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa flour and Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYADURGA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'pandita vaasudevu flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHALAKSHMI OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ARMUGAM RAMASWAMY RICEMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DEVI RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi sai Oil and Floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri pavan agriculture', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nageswara rao flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sarswathi flour mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suguna Mills', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sagar pindi mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'savitramma flour mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Akshaya Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Dhanalakshmi Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kamakshi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURESH FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOWRI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bheemareddy Floor Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dasara bangara raju flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naga Durga floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yugandhar flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AKHIL PINDI MACHINES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi thirupathamma flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA LAXMI DURGA PURE OIL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWAMY AYYAPPA DURGA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prudhvi floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Yeneti Geetha flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kantubuktha appalanaidu flourmill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ram Prasad Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESWAR FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RATHNAMMA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETHARAMA ANJANEYA FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'b appalaswamy rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Seetharama Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'murali krishna floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK NHANNI BEBE MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRIVENKATESWARA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi venkateswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Abdul Hameed fancy and kirana stores', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Ramana flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri vijayabhaskara rice and electrical flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'sri krishna ramanjaneya beaten rice flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'aslam basha flour milling', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallikarjunarao Chillies', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna Rice Oil and Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K MD BASHA  OUL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHESWARI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaram flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaver oil rotary flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kalki venkateswara flor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Modha Maheshwari flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MURALU KRISHNA GENERAL MARCHANTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMANA OIL AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VADDE RAMESH BABU FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ch Karunakar', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SWARAJYAM RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA SAI DAL AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANJANEYA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adireddi Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dasegowda Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sarojini flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI AGRO FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhagyalakshmi rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI MINI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VIJAYA GANAPATHI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHANTI FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Boya srinivasulu', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jai kasi viswanadh flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Murali Krishna flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chekka Satyanarayana', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'SRI SAI GANESH FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dandu Chinnakregoudu', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ventarama Rice and Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'L V Rangaiah Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkataramana mini rice and store mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'gopisetty moola Raju flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nageswaramma floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VINAYAKA FLOUR MILL AND MASALA WET GRINDERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'swamy general flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Mahalakshmi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Modha Sai flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Annapurna flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Durga Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Edukondalu Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Malleswara Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mahalakshmi floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Rao Kaaram Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUNTAJ FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Santosh flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adinarayana', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya chandhra flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata ramana oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parvathi parameswara rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghavendra Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata satyanarayana Swamy rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Durga Flour and Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'seetha ratnam oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Amma Bhavani Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi ganapathi oil and Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bhaseer Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B Anjineyalu', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri laxmibasakara flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'kanaka durga oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'P Satyanarayana', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kankatala Ravichandra', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pinninti Appalanarasayya Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hithendra Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BGH FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chowdappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA LAKSHMI FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lova thali floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Asritha Flour and Oil Rotary', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka Durga Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama anjaneya rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS MATHRUSRI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD FLOUR OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiva flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gayathri Oil and Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naga Surya Oil and Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suthapalli Vari Oil And Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA OIL AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA OIL AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA FLOUR OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkatewara oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vykunta Rao flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sivaji rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sridhar shop', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA DIRGA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B G Subbaiah Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA PADMA FLOOR AND DALL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Govinda Rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dhanalakshmi Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAXMI FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Ganesh Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GRACE SWARAJ FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sekshavali Flourmill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Durga Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAHAMATH PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veeramma thalli floor and oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS suneetha floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SATYA SAI OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA SAI FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Revathi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Deepthi Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ganapathi Venkata Panduranga Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'peera sab Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJA  PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MARUTHI FLOOR MILL AND HALLOR', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI MANIKANTA MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sagar flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARSHITHA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gousiya pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A BHEEMAPPA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai manikanta floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI ROLLER FLOUR MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '33']
[' Industry Name ', 'DURGAJYOTHI OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAMEEDA FLOURMILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUJIVANA PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRUPA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'penchala narasa Reddy flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MADHAVA FLOURING MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tungana Ramanamma Floor Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagendrakumar flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SREENIVASA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gyatri flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Raja Rajeswari Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri pindimillu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri chandra venkata rice hire and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SOWBHAGYA LAKSHMI FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PRASANNA ANJINEYA SWAMY FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Mohan flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veera prathap flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHARAVATHU VENKATESWARLU FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BOGGAVARPU DHANAMMA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAVINDRA MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVASANKARA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Poorna Sai Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Rama Shankar Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Bramaramba Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Sri Seetarama Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'janiki ramareddy small scale industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VASVI FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thondapadu Rangaswamy flour mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Katta chalapathi rao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'B KOTESWARRAO FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kuchipudi Venkaiah flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI MODERN FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri veera venkata satyanarayana rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MA MANEYKESWARI MINI PINDI MILLU', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'suryanarayana rice and floor mills', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chandra Shekhara Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'medidhi anasuya', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Flourmill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Purnima flour mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'parunaidu floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PARVATI PARAMESWARI RICE  FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lalithamma Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N ramalingeswararao  oil  and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Ramachandra Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Fakruddin Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAKTANJANEYA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madhav flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Golla Mallarappa Gari Chitaiah', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI SURYA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Virabadraswamy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'frakkuddin', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Hanumanth Reddy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gopala Krishna Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANESH FLOUR  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswari flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nagamani flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Radamma flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata durga oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Durga oil flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Yelappa Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMESH FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Devi Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k s velan', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA LAKSHMI FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMBABU FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Varalakshmi floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKA DURGA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopalakrishna flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva prasaad flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Banu Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Trinadh Oil And Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dhanalakshmi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J KOTIREDDY PINDI MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vighneswara Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narasimha Rao Pindimara', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bhaktha anjineya rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Oil and Floor Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour mill Marthadu', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S K welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMBIKA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nandini flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesha rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'malliswari  flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA OIL and FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANA LAKSHMI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MUSHKIN FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S R FLOUR MILL AND OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata dhanush flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGALAXMI OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'pindi machine', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'mamidi ravi flour  mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mahalaxmi Pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'palakondakrishnareddyflourmill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kondammaflourmill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bandaru sathyanarayana flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree venkata lakshmi manjin  hair oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VVSN Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA BHAVITHA PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'adi Lakshmi flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Padmaja floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'easwarreddy flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEETHALAM  LAKSHMI', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shaik masthanamma flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vukoti Venkateswarlu Flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vadiboin   anuradha  flour  mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijayadurga Rice and Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gangireddysugunamma', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri veerabhadra mini flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kanakadurga flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GRAIN MILLER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kotadurga Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANADHAM FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARISETTI SHANKARRAO FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kotadurga Floor Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kanaka mahalakshmi oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'RAMAKRISHNA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'uppala eswarrao flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjeneya flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill1', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Asiritalli flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA FLOOR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Majji Gouramma flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOTADURGA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gouri Shankar mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Seedari Subbarao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGAMMA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'maturi sathyanarayana flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyakrishna Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narayanamma pindi millu', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SWARNA SUDAKAR FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajasekhar flour mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maddi Govindarao Flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANKAR RAO FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Vijaya Lakshmi Balaji Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganapati Floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KORADA HARIKA flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HEVEN HOLY HOST FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pattabhamma Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TULUGU ANANDARAO flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KrishnaRao flour mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kavyasri Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KORADA HEMALATHA flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M Vanajakshamma', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Uma flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'penusila lakshmi narasimha pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KGR Grain mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narisimha Rice and flour mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'getha Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gondu Jayamma Flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'DURGA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIDHARALA NOOKARATHNAM FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri M Srinivasu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijayalakshmi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANARAO SEMI AUTOMATIC FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhaskar Rao Flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G M flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MINI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'potta eswar rao flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata krishna industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ari lakshmi narasimha flour mill and oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chalavadhi Nagaraju', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KOTTAMMATALLI FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatewara floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramana Flour and Oil Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Lokesh Flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ACHUTA VEERA BHADRA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satya Ratna Floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hassena bee flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai general stores and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA FLOUR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SKML FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA SAI FLOUR AND OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya mini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A S NARAYANA FLOUR AND MINI OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VILLURI VARALAKSHMI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ramachandra rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Indira Flour mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'manikanta floor and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani lakshmi  floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri narasimha rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAK Flour Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswra oil and flour mill 2', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Naveen flour mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanakadurga industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Venkata Laxmi Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAJJIGOWARI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gunesh flour rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Madhuri Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAJIVALI FLOURING MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama laxmana Dall and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'satyay floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANNAPURNA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Chandra oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESWARAMMA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganuga', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meena flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ELAHI FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAVA DURGA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YOGANANDA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SITA RAMANJUNEYA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raviteja flour mills', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkatasatya rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyavathi flour mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata anjaneya flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mubarak Flour Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANESWARA FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vijaya Dirga flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri annapoorna general merchant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri sita Rama rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ramesh shop', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B venkatesh flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Delux Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Deepthi Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rama rathnam flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya hunuma oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srirama cattle feeding', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa Flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mallikarjuna flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Naga Lakshmi flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA MINI FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI KRUPA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI ADITYA  RICE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Ganapathi Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'Sri Rama Krishna rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA KAMESWARI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VIJAYA KANAKA DURGA DALL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara modern and rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIVEKANANDA SEEDS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Koteswara rice and flour', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'dhanalakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'khasim and sons rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vashista seed processing plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sivadurga automobiles', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Narayana Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'start flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kalam Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANA DHANYA LAXMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'plour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENUGOPALA FOOD GRAINS AND PROCESSORS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI LAKSHMI RICE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sathyanarayana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GAYATRI HEALTHY FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Venkateshwara flour milling', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramana Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EVEREST MODERN PAR BOILED RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga venkata rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'seetharama rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOLDEN HILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SWARNALATHA MINI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA SHANKARA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJIYA LAKSHMI FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SAI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Saraswathi Grain mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balaji Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'leela venkata krishna traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASM AGRO INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manikanta', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYALAKSHMI MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata thrinadh Naidu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI MODERN RICE AND OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Vayunandana Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Vijaya rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri majji gouri flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHESHWARI AGRO INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SivaSai Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V K Agro Products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYA LAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA DALL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SAI LAKSHMI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri Vinayaka pindi mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI MODERN RICEMILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Bhagyalaxmi Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai durga modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADITYA AGRO INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MANIKYAMBA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Krishna chandra Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'N R P Saradhi flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MRM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Chiranjeevi Blackgram Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI BABA RICE MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LALITHA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RONGALI NAIDU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMAKRISHNA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Jagabandu Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gayatri rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Krishna Prabhu rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SATYANARAYANA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI PADMA MALLESWARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI KRISHNA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAMPATHSAI AGRO FOODS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'chavala venkata subbiah and co', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KAMESWARI MRM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'gowriswara parameshwara traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'sree rama ricemill and Decarticator', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Suvarna Lakshmi Venkateswara flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANGA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rama Krishna Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Ms Savitha Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI SRINIVASA MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI SATYA SRINIIVASA RAMAKRISHNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI HARI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PRABHAKARA RICEMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkataramna rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIJAYA LAKSHMI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAINATH RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIDEVI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI SESHASAI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri  Saikrishna Dal Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAMBA SIVA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Aruna rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shanmukha rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'vijayalakshmi rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rukhmini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara ricing flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA NARASIMHA SAROJA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI KODANDA RAMA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI SANTHARAMA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIMALA FOODS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jai sriram', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATAMUNI MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SRI SEETHA RAMA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Dhanalakshmi Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AYYAPPA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'UMAMEHESWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'sai chitti rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi Satyanarayana rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri satyanarayana Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SARASWATI MINI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA VENKATA SYAMALA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Karuna Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA KRISHNA AGRO INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'manepalli flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sitha Ramanjaneyulu', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KAMESWARI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA KRISHNA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi Venkateshwara mrm', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Rice Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri lakshmi venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill  GN oil mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAIGANESH DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KA Shetty flourmill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA SANKARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVASA FLOUR AND RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA RICE MILL AND DECORTICATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'modern rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA RICE AND FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SAI RICEMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI RAMAKRISHNA RAW AND BOILED RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI SAI BALAJI MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MANJUNADH MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NATGROW FOODS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Brundavan Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri suryadhanalaxmi Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SATTVA MILLETS AND FOOD PRODUCTS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'Dastagiramma Burugulabatti', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAXMI BAJALI INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Lakshmi Venkateswara Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Abdul flour mills', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS Hussaina Flour Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Adithi Millets and Organics', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Sai Veerabrahmendra fried gram mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Grain Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Sri Rama Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMMA FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maa food products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara rice and flor', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gunuru Govinda rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J C Foods', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'BONI SRINIVASRAO POPCORN', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bheemeswara home foods', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Devi Tiffin center', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri rama nethi ariselu', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Chegodila factory', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Jammaraju mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramakrishna flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KV RAO VENKATESWARA FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri rama murmaras', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maruthi Vijaya rice floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Q1 International Agro foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ULTRA REACH AGRIMARKETS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'AMRUTHA FOOD PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Srisatya rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SIVA SANKARA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AVANAPU APPARAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GORSA NAGAMANI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GAYATRI SEMIYA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MIRTIPATI RAMU', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jayamma Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Swamy suppliers and caterers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMARAVATHI SPECIAL FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'prabhu industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VIMALA MINI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyanarayana flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHADREENATH AGENCIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Murali Krishnna Nethi Mithailu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Good Manners Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA SAI CHEGODI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'B YERRAMMA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyavathi chegodiyala factory', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'lakshmi sai enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'ANANDABHAGAVAN', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gembali Ramesh Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tejaram foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'panchimukeswara ice factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri dyanalakshm prasanna bekary', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JABA STAR', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri rama Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Radha Krishna Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pandiaan company', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'NP foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATA SIVA SAI MINI MODERN RICE AND FLORE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TULASI SWAGRUHA FOODS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'k venkateswara rao ice candy unit', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'deepika enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JYOTHI FOODS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'KOHINOOR TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENGAMAMBA FROZEN FOODS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'VENUGOPALA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sidharth home foods and churnas', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana Frozen Foods', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'mounica enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MANIKANTA MODERN RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'M M Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anand Vamsi Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SAMAGRI VENTURES LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Raj Mayura gardenia', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Venkateswara Frozen foods', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'vigneshwara flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Sai Durga traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEELAVATHY MINI FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'paruchuri srilakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri sri krishnasrinivasa modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Krishna rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sri srinivasa new modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI BALAJI FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri hanumanth Kali prasad raw and boiled rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI SAI RAM DAIRY PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Sri Satya Narayana rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Hanuman Ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata durga bhavani rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'jai kisan ripening and cold storage chamber', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Krupa Industries and Marketing', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'RMM FOOD PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'SIVA GANESH ICE FACTORY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA GAYATRI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Bismilla floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUVARCHALA FOODS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ammalu mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HANI SANTHOSH TRADERS  CO SRINIVASA INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'VIJAYA KRISHNA AGRO FOOD PROCESSING PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '60']
[' Industry Name ', 'indiraseeds', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SICGIL INDIA LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Golden biriyani s', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri Lakshmi Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI DURGA DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ORILLET FOODS INTERNATIONAL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'PARITALA COLD STOREAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GRD MUSHROOMS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'S R processing unit', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BCL HOLDINGS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SWETHA DAIRY FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FOOD PROCEESING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Sree harishinne casheew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri lakshmi durga rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dhanalakshmi rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWRA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MRS DALL PRODUCERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KELLOGG INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '152']
[' Industry Name ', 'chennupati polymers', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'PAVANI SWEET SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHURI FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jayam food products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Amrutha Food Products', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA BALAJI MODERN RAW AND BOILED RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bhagya Lakshmi mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi ganeswara oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata rama flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinay restaurant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'riyaz k basha consaxns', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ORVAKANTI KRUSHNA KUMARI', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA RAMANA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VANDANA ICE CREAMS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'dhukkanaidu rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mittikayala achamma flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Geetha ice creams', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ammalu pindi millu', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRIYANKA SWEETS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SIVARAMA GANESH MINAPA GULLU MILLS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAGHAVA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RANGA RAO VADDI SRI BALAJI ENTERPRISES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri balaji rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Balaji Rice and Flower Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Decorticator', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENGAMAMBA FROZEN FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'B jayachandra Reddy rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N P FOODS UNIT-II', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLAH  OIL  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'indiraa foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Dhanalakshmi floor and rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MURUGAN FOOD SAUCE', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SANTHOSH FOOD PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHENNAKESAVA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA COOL DRINKS AND ICE CREAMS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI BALAJI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VISTA PROCESSED FOODS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '41']
[' Industry Name ', 'Revathi Home Foods', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI DURGA PAPPUNDA COMPANY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SAI CHEGODI COMPANY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ramachandra ice parlour', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAKASH BAKERY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'kosuri ramu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAMASHTI FOODS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RAYALASEEMA RESTAURANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Tirupati rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAVEEN AGENCIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA MINI RICE FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ARAVINDA AGRO INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'SRINAVASA RICE FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA FROZEN FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI ABAYA ANJANEYA DAL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARAGANAPATHI MODERN RICE', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Lakshmi putra enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sundharam Agro Sortex Food Products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Honey foods', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SMSEA COLD STORAGE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'SRI PREMA SAI INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'BALAJI RAW AND RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BOGGAVARAPU MALLIKHARJUNA RAO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'geetha ice factory', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Bismillah Ice Cream Agencies', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aromatic Chemical  and oil company pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Shreeniketan Foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'sivasankara fried and gram mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Venkateswara Friedgram Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'padmavathi floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishna veni Pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'radha krishna Fride gram Dall works', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MSVYSHNAVI FRIEDGRAM INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BABA FRIED GRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswar modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hazarth Mahaboob Subhani rice and floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVI FRIED GRAM MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRIED GRAM MILL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THE MANCHY FOOD PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRISAIRAM RAITHU MUTUALLY AIDED COOPERATION SOCIETY LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijayawada Classis Pineapple', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Malladi Ripening Chambers', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Devi Fruits', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S FRUITS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ratanam mango hub', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SANGAMITHRA AGENCIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'NAVARAS FOOD PRODUCTS LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NATURAL FOODS AND FACIALS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'RANGA FRUIT PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SIDDARTH AGRO', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'HAYATH FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'RN Galla Family Pvt Ltd Galla Foods Division', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit pulp & juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '136']
[' Industry Name ', 'Sri balaji ice candy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Fruit pulp & juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW RANGA FRUIT PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT PULP AND CONCENTRATE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'LEON FOOD PRODUCTS PVT LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT PULP AND CONCENTRATE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '26']
[' Industry Name ', 'SUNGOLD PROCESSED FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT PULP AND CONCENTRATE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '37']
[' Industry Name ', 'SREE SANNIDHI FOODS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT PULP AND CONCENTRATE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'Bismillah cold storage', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SBR Banana ripening unit', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MMS COLD STORAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'KBS Banana Fruit Merchants', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SHAHID BANANA MANDI', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JANARDHANA BANANA MANDI', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SNR BANANA FRUIT MARCHENTS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VINAYA COLD STORAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MAHAMMAD RAFIQ COLD STORAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'K R M Banana fruit marchents', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'FRUIT RIPENING CHAMBERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'satya poultries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grading and Packing of Eggs and its ralted food items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI KRISHNA POULTRY FARM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grading and Packing of Eggs and its ralted food items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ambati brahmayya poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grading and Packing of Eggs and its ralted food items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'FRESH CART AGRO PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI HEMA MODERN RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grain Based Distellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHANDRA SHEKHAR RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grain Based Distellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'GORAKALA SANTHI', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grain Based Distellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'apvrss', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grain Based Distellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BANGARAMMA DALL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VASAVI KANYAKA PARAMESWARI FRIDE GRAM DALL MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RATHNAM DALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ahammed Fried gram mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rural ware house', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SADGURU MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI DAL PRODUCERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYALAKSHMI DALL AND OIL MANUFACTURERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Srinivasa Rao Dal mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rural ware house', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vasavi Dall mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALA DALL AND OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Durga Shankar trading company', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA PADMAVATHI DHALL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI VINAYAKA DALL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VENKATA BALAJI FRIED GRAM DALL MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHINNI DHALL MANUFACTURER', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAI GAYATHRI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GRAM DALL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Devi Chilly Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BUGGA LAXMAIAH', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'FLOOR MILL CUM XEROX CUM PAN SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'QUALITY CHILLY POWDER', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Kanaka Durga Floor Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi pindi machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SATYA SAI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hanumantha Rao Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GRUHALAKSHMI FOOD INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Malik Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PP MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANJANEYA TRADERS AND MILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'krishnq chaitanya sortex', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Praba Simhachalam Floor Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GHULAM HUSSAIN CHILLY AND SPICES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding and Processing of Spices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHI ROTARY AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA FLOUR', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'G V SAIBABA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Puspavathi flour mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara flour mills', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Basaveshwara floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijaya durga dall mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Varada reddy pindi machine', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rnoorflourmill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M Lakshmaiah Kaaram Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri amulya cofee and general stores', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'sri satyasaraswati modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'grinding', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pattadai N Krishnamoorthy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ramu flourmill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalaxmi flour Mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SADA SIVA FLOOR MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vannuramma mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shanmugam oil and plwer mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSMI SAI FLOUR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAZEERALAMSHAIDBABA', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJESWARI WET GRAINDIGS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Nandhi Flour and Oil Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ali pindi mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'USHARANI FLOUR MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'sujatha traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'lalitha traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYADURGA ENTERPRISES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gangadhara agritech', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kubra units', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Ram Traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri Venkata Satyanarayana Ground nut processing unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'devi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri vinayaka oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'DHANALAKSHMI AGRITECH', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANGA BHAVANI GROUND NUT DECORTICATOR', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Nagabhushana Ground nut mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VIMAL TRADERS DECARADTOR', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Manjunatha traders', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Padmavathi Traders', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'M p govardhanam', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkataramana Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Traders', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'gouse industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA KANAKADURGA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Padmavathi Floor Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NARAYANA SWAMY GROUND NUT MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama groundnut mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARKANDEYA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lalitha Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHARATHI TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai sreenivas traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA DECORTICATORS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI ANNAPURNESWARI MINI DECORTICATOR', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Manikanta traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA GROUNDNUTS PROCESSING UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pavan Traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shahemasthan mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri lakshmi Ganapathi Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Oil Rotary Kandlamadugu', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'prasanthi groundnuts', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MANIKANTA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Uday Krishna Seeds', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS VIKAS INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rama devi ground nut mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BISMILLA OIL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkateswara Oil Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Rama Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'groundnut mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Anjaneya Dall and Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARAYANA JUTE PRESS AND GN OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI TRADERS RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prabhu kiran enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JAYALAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkatadatta traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ms KODANDA RAMA GROUNDNUT MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya traders', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri saduguru deva traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi srinivasa traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai surya general traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N VENKATESH', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIVA SAI DECORTICATORS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SRI LAKSHMI INDUSTRIES GROUND NUT MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'VIJAYA LAKSHMI BABY EXPELLER AND BABY DECORTICATOR', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SIVA BALAJI TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'tirumala traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R S TRADE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Manikanta traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MEHER KRISHNA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Varad Agri tech Limited', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS M RAMI REDDY INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka durga groundnut miil', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI GROUND NUT  AND OILLS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA GROUN NUT INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmisrinivasa', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'charan processed foods and export', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri siva teja industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'GROUND NUTS PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Vinayaka Decorticator', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUMIYA TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Groundnut Decorating Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suzain Traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BVL ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FAIEKA DEKARGATOR', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'JAI BHARAT INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'jyoshnika royal industry', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI VASAVI KANYAKA PARAMESWARI TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Narashima Groundnut mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Raghavendra Decordicators', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Mandli Nagaveni G N Decorticators', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Samira GN Factory', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dwarkanath gupta decorticator', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Ahmed decorticator', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka Agro Services', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI VEERABHADRA DECORTICATOR', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KRISHNA  G N DECORTICATORS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYARATHNAM CHETTY RICE AND FLOUR MILL NARAYANAVANAM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI V RAVI SEKHAR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Malik Traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARASIMHA SWAMY TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHANDBASHA TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GNANA PRASUNAMBIKA MINI DECORDICATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GROUNDNUT DECATATING MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MUTHYALAMMA THALLI MINI DECORDICATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GROUNDNUT DECATATING MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAVITHRA VISHNU TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Radhaswamy decordicators', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI SRINIVASA DACORTICATOR   AND OIL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAGYASHREE DICORDICATOR SRIVHARINATHA REDDY MARRIPADU', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGABHAVANI DECORDICATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bobby DECORTICATOR', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PURUSHOTTAMA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'TIRUMALA DECORTICATOR', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi sreenivassa decorticator', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Shirdi Sai Decordicators', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Muniswamy Traders', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VINAYAKA DECORTICATORS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'omsri  veravenkata vasavamma traders', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'HANUMAN DECORTICATOR', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanaka Mahalakshmi Agro Services', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'sri sai ganga decordicators', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'amruthavalli Decarticator', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sivaprasad Decorticator', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T NARASIMHAREDDY DECORTIGATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LALITHA GRAINS ROTARY ROSTING INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Decordicator', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Sunkulamba Groundnut Decorticator', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shirdi sai decorticator', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa traders', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SPS MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BALAJI DECORTICATOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAMALAI TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Balaji Decaraticing Groundnut Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SREENIVASA GROUNDNUT DECORTICATING AND OIL MILLS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHAGYA LAKSHMI OIL UDYOG', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Groundnut decorticating (dry)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Balaji Herbals', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'HERBAL AGRO AND FOOD PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRIRAMA OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'HERBAL AGRO AND FOOD PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENNILA QUALITY ICE CREAM', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATA RANGANADHA ICE PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sambashiva ice company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BRAMAIAH ICE MAKING', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJYA LAKSHMI DEVI ICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Venkata subba Raju ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI ICE CANDY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'coco ice parlour', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'padmaja ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'subba Raju ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANNAMAYYA ICE INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUBRIBRAHMANYESWARA ICE INDUSTRIS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga Ice', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAMMAD RAZA ICE INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Tanuja ice factory', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGA HANUMAN FISH PACKERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VENNELA ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJA MINI ICE FACTORY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'V S N Murthy ice manufacturing unit', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Neeraja ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SME AQUATECHS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SAI LAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bombay Ice Factory', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'THE NELLORE ICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'HONEY ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Raja Ice Making Unit and Annapurna Oil Extraction', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'DEVI ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri vinayaka ice plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Golden geetha ice cream', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANJUNADHA ICE FACTORY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'HARINI KOWSHIK ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE GEETHA ICE', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SAI BABA ICE PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ice Plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MS RAJESWARI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'PAIDAMMA MINI ICE PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V K Parameswari Ice Parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S V S ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Sai ice industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAI SHANKAR ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Balaji Ice Cream', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Hari Priya Ice Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Devi ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri surya lakshmi ice plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAGDEVI ICE PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'UDAYA BHASKARA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Swetha Ice plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'swathi ice creams', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAVANI ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VARALAKSHMI ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUPRIYA ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE VENKATESH ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'NAGA HANUMAN FISH PACKERS UNIT II', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJARAJESWARI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURYA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Satyanarayana ice Industry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HIMA BINDU ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI ANJANEYA ICE UNIT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASANTHI ICE PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Seetha rama ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AJAY ICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Narasimha Raju ice Factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Geeta Ice Candy', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI SAI AQUA TECH PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'HIMARATNA ICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'J S R ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Raja Rajeswari Ice Plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JSR ICE AND COLD FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA SAI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'S J ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA KANAKA MAHALAKSHMI ICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K K S ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKADURGA ICE PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SIVAGANGA ICE PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Geeta ice parlour', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHINTAMANI ICE PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HIMALAYA ICE PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAYALAKSHMI ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DEVI ICE PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nellore Ice Industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Raju Ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MEENAKSHI ICE PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SKM Ice Factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SURYA DEVARA ICE  AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KALYANI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sumathi Ice Parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'USHODAYA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA ICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Teja ice candy', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Syamala Ice Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SKN ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ICE Plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vengamamba Ice parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri lakshmi Venkateswara ice industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rajeswari ice plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanakadurga Ice Factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMAKRISHNA ICE COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramana Exporting Agency', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Jhansi Ice Factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYAVATI ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Siva Prasad Ice Plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pallavi Ice Factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anil Ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'amara laxmi ICE factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'kodali ice industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETHARATNA ICE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Zabeer ice parlour', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YASHITA ICE AND FOOD PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SS INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KVL ICE COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anil Ice Factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ice factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MUTYALAMMA ICEPLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'UDAYA KIRAN ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA KRISHNA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vinayaka Ice Plant Works', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'KAMUJU RAMA SUBRAHMANYAM', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RAM ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Geetha ice factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI LAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA LAKSHMI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'SRI VENKATA DURGA ICE PARLOUR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BANGARAMMA ICE FACTORY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Geetha Ice creams', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KALI ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA LAKSHMI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'JAIMAAKALI ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Himalaya ice factory', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMR ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sambasiva Mini Ice plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVI ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA ICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'KDR ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI DHANALAXMI ICE PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Madeena ice factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi ganapathi ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CLR SEA FOODS AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SAI ICE INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAAKALI ICE PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LALITHA ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VIJAYASRI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI Venkata Bhavani Ice Factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SWASTIK ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE VALLI ICE FACTORY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkateswara lova prasad ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA ICE FACTORY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRINIVASA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SURYA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Radhakrishna icecreams', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUMARI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BHASKAR ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Gayathri Ice Factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHANALAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI MUKHA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GEETHA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VVR ICE PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SEA FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KEERTHI TECHNOCRATES  GEOSPATIAL PRIVATE Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'THE BALAJI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'AB ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri devi srinivas ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NFS ICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MR BISMILLAH MOHAMMED ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K K S ICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI KRUPA AQUA ICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOLDEN ICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KAMAL ICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Fakruddin ice factory', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAVICHANDRA ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanaka mahalakshmi ice plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'M V R ICE AND AGRI FOOD PROCESSING INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SHIRDI SAIBABA ICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAGHAVENDRA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'QUALITY ICE CANDY', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI HARSHA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI GANGA GAYATHRI ICE PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Ganga Bhavani Ice Plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATA DHANALAKSHMI ICE PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAI DHANALAKSHMI ICE PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Shirdi baba ice factory', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA DURGA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SIMHADRI ICE PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'GAYATHRI ICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI GANGA DAIRY PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'INSTANT COFFEE MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Andhra Coffee Industry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'INSTANT COFFEE MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 't obuleshu', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'INSTANT COFFEE MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nandi coffee works', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'INSTANT COFFEE MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHASKAR GANESH FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Jelly', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA FRUIT PROCESSING', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Jelly', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYADEVA MANGO FRUIT PROCESS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Jelly', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'EAGLE DISTILLERIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'LIQUOR BOTTLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '62']
[' Industry Name ', 'BRK  SPIRITS  Private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'LIQUOR BOTTLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'ARTHOS BREWERIES LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'LIQUOR BOTTLING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '40']
[' Industry Name ', 'rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mufhik flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Charon pokphand seeds', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '29']
[' Industry Name ', 'Sri venkataramana oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai ram floar mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARSEGOWD FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Taraka Sai poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'suvarnamma flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'k venkataramanaiah', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi narayana floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KP AGRO INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Maruthi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA FLOUR MILLS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI USHA MAIZE FLAKES KOLLURU', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maize Flake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI DURGA OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Berak oil and floor works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri saibaba oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIJAY GANAPATHI OIL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramu Naidu tynana oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anandhini oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bajrang industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHAN FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bha ni Sankari flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYNAGAR BIOTECH PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '234']
[' Industry Name ', 'SHAH E MIRAN AGRO FOODS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VENKATESWARA OIL AND FLOOR', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VINAYAKA FLOUR MILL UNIT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G venkatewarao flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K Reddeppa', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'murthi flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rahul flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Govinda rao  floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri manikantha swamy oil and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'motiya foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramesh floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KRISHNA FOODS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BHAVANI SAMOSA company', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAI FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VEDHA HEALTH FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'durga foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mohan Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANTHI HEALTH FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Adinarayana Reddy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi devamma floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Jayamma', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sudharshan flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai pindimillu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V kamalhasan Reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka Durga floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'narasimha pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Malt Based Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fairy food products private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Veera Venkata Satyanarayana mango jelly', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kk foods', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai Durga furniture works', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri manjunatha fruit canning industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SREENIVASA FRUIT PROCESSING INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Navya Foods pvt ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '28']
[' Industry Name ', 'SRI DEVARAJAS AGRO FOODS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Mango Juice', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'VIGNESWARA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF COCONUT CHARCOAL AND COPRA', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghu Raju oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF COCONUT CHARCOAL AND COPRA', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'madhavayya traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF COCONUT CHARCOAL AND COPRA', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'dhanalakshmi rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF COCONUT CHARCOAL AND COPRA', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'durga jaggery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara bellam patti', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'LAKSHMAN RAO JAGGERY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maddukuri Srinivasarao Jaggery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '21']
[' Industry Name ', 'Vallabhani Sriramamurthi jaggery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'Durgayya jaggery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '24']
[' Industry Name ', 'Durga jaggery industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'Khaja Sweets', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi jaggery', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURE OF JAGGERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SAS AGRO FOODS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacture of Tutti Fruity', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ARUNACHALA FOOD PRODUCTS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacture of Tutti Fruity', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'venkatalakshmi mini ice parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacture of Tutti Fruity', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VAGHIRA INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARRY FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANESH MANIKANTA SAGO FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Pullappa Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chandra kalavati', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA GAYATRI PINDI MARA', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya bharathi traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijayalakshmi scales', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATHYARAO FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasaa rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing Maize Starch & its Derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Coastal Cones', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI FOOD PRODUCTS 1', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SLN BAKERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Annapurna Pantala Sangam', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RK BREAD AND BISCUITS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'THAMMANA BAKERY SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'OME SAI RAM SWEET AND HOME FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Winni cakes', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Meesala krishna Mohan', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chasw industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'mahalakshmi general stores', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Regetlamma thalli Bengolore Bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Laxmi srinivasa cone company and ice cream', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'khajaruddin biscuits backery', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasam food factory', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'K MANMADHARAO BAKERY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DINESH BAKERY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chennakeshava Oil', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva parvathi enterprises', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'HR agri products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATESWARA OIL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYALAKSHMI OIL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anjaneya oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI NAGENDRA FLOUR AND OIL ROTARY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai ganesh rice flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalakshmi oil mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hanuman oil Rotary', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI BALAJI OIL MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri bam bam baba oil industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Caster oil', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri marlmamba oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree Srinivasa oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji Oil and Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'vijaya lakshmi oil mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'eswar oil and mills', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA MAHA LAXMI OIL AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Neelima Kavya Oil Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanakadurga Oil Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'mrk wooden cold press', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Vijaya durga flour and dal mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Floor Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'calorie care cooking sprays pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Rajya lakshmi flore rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vinayaka oil products', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', '3F oil palm Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '94']
[' Industry Name ', 'Sri balaji oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flour oil rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Gingelly Oil Works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Venkata Ratnam Oil And Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVSR OILS AND GENERAL STORES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gulab Rice Flour and Decortication Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bramarambika pooja Material and Oil Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Kavya oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'prathima oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satyanarayana oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijayalakshmi oil mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Varalakshmi Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANESHWARA OIL AND FLOUR MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G BAPIRAJU', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vara Mahalakshmi Gingle and Flour works', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GODREJ AGROVET LIMITED SEETANAGARAM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '180']
[' Industry Name ', 'SRI SURYA SATYANARAYANA GINJEL OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Siva Sankar sai traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri anjaneya oil and general stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA NARASIMHA OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Venkateswara oil', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VISWANADH OIL CAKE AND GENERAL MERCHANTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GODREJ AGROVET LIMITED CHINTAMPALLI', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '210']
[' Industry Name ', 'sri krishna oil and flour  mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOMANATH PROTEINS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vikram Oil Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYALAKSHMI OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri PARAMESWARA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'umasankara oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Srinivasa oil rotary', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Oil mill by Vuyyuri Naga Subbrahmanyeswara Rao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MARUTHI OIL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara flourmill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri devi flour and oil works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ADDA GOPALA KRISHNAMURTHY OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVABHARAT LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '189']
[' Industry Name ', 'VENKATA LAKSHMI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prasannata oils and general stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA FLOOR AND OIL MILLS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Annapurna flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh Flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Satyanarayana oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHARMAVARAPU SRINIVASA RAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Geetha oil rotary', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHARMAVARAPU SURYA NARAYANA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jayalakshmi Oil Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHARMAVARAPU SARVESWARA RAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pebbili Oil Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi srinivasa oil mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI SAI OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRILAKSHMI VENKATESWARA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara flour and oil rotary', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM BASHA', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi pravalika oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Adani Wilmar Limited 2', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '66']
[' Industry Name ', 'Sri Surya flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'royal coconuto oil and general murchants', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARUNA OIL FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE LAKSHMI OIL and FLOURMILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SARKAR COCONUT OILS AND GENERAL MARCHENTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jhansi Naidu oil mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADANI WILMAR LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '71']
[' Industry Name ', 'sri lakshmi venkateswara oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MADHAVI OILS  AND FATS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'B N RAMAKRISHNAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Bheemaiah chetty', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMALAKSHMI OIL MILL ROTARY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANJANEYA OIL AND Floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'R SIVA RAMAIAH', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAXMI CHENNA KESHAVA ROTARY OIL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagendra ganni oil industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri vijaya Durga oil and general stores', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji Durga oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Balaji Agro OIls Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '107']
[' Industry Name ', 'Gemini Edibles And Fats India Pvt Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '189']
[' Industry Name ', 'Sree Lakshmi Venkateswara Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivasa oil mill and general stores', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri satya durga gingile oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'krishnaprabha Agro oils private limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI krishna murthy oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi rice and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'lakshmi Venkata ramana traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMAN OIL COMPANY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VINAYAKA OIL MILLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'raavi agro oils Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'HARSHA OIL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA OIL AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'W3 NATURALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'MS G K Enter Prises', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'MS I K OILS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'South India Krishna Oil and Fats Pvt Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '302']
[' Industry Name ', 'sri lakshmi srinivas oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVI ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI PARVATHI OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vaishnavi enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishna ground net flour and rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri matha gayatri oils', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sarveshwara flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree solapurithalli oil and flourmill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DAMODARA OIL MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Sri Venkateswara rice flour and ground but mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri raghavendhra oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Arogya organic oils and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hanima traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satya Surya oil and Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'abbulu gari oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri maheshwari oil rotary', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi eeswara oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRIRAMA OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHANTI OIL PALM INDUSTRIES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'DIVYA SAI NADHA OIL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'sri venkata santhoshi lakshmi mini oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai speciality Fats and Edible oils', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Kasu Hanumantha Rao Flour And Oil General Merchants', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GOWRI FLOUR MILL AND OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shivaprasad oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'chitthirala Edible oils and foods Pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Sri Ramanjaneya Oil and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HIRA OIL MILLS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOKILA ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Balaji Oils Private Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '50']
[' Industry Name ', 'PADMANABHA OIL PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri rama oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHANKAR OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chodavaram Venkateswararao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EMAMI AGROTECH LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '156']
[' Industry Name ', 'K KUMAR SWAMY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS ADHITHYAAOIL INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAXMI INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'B venkatrathnam floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAVANI OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI VENKATESWARA OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahalaxmi oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manikanta oil and floors mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sridevi Trading Company', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RENUKA SRI OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sita Mahalakshmi Oil And Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ZENCO EDIBLE OILS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RANILA CORPORATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ganesh Oil Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA SATYANARAYA OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rayyalaxmi oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA DECO PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PRABAKAR OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKAYAMMA OIL AND FLOOR MILL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ravindra Solvent Oils Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '37']
[' Industry Name ', 'Daiva  krupa floor and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI VARA PRASAD OIL AND FLOOR', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Swathi cottons Pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '45']
[' Industry Name ', 'VENKATA LAKSHMI OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATALAXMI OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'TIRUMALA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI NARASIMHA SWAMY OIL MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SITARAMA OIL PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D N R  AND COMPANY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Amaranath oil rotary and general stores', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Subba reddy', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANTHOSHIMATHAA OILS AND FATS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '78']
[' Industry Name ', 'Adani Wilmar Pvt Ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '40']
[' Industry Name ', 'NITHIN FOOD PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAMBHAVI OIL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'AMBICA TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'ASWIN TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VEERAVENKATA SATYANARAYANA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi ice plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata pathi aromatics pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TURFPEARL AGRITECH PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'INTERNATIONAL FLAVOURS AND FRAGRANCES INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '367']
[' Industry Name ', 'Raja ice cream', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GS FOOD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'sri vigneswara rotary and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EAST INDIA AGRO COMMODITIES PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'saree sambasiva rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'International flavours and fragrances india pvt ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF FLAVOURS AND FRAGRANCES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '54']
[' Industry Name ', 'Siva ice cream parlour', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGABHUSHANAM SUGAR CANE JUICE CENTRE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree fruit bevarages', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'sri chamundeswari cool drinks and ice creams', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Purewinn Agro pvt ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'RASAA FOODS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'SREE SAMPADA LAXMI FRUIT INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Venkateshwara Cool Drinks', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NOD FOOD PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VARADHARAJA FRUIT PRODUCTS PRIVATE LIMTED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'GLOBAL FARM FRESH PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'UNITED FOOD PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'maddilti reddy flourmill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maridimamba Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI DHALLS AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TUMMEPALLI ANANTHA VEDAVATHI FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahalakshmi flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yallanki Chandra mouli', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SNV Agro industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyanarayana rotary', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Boya Lalithamma', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'g venkata subbaiah grindings', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'patibandla gopal', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri subramanyeswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parvathi parameshwara Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Vishnu seeds', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', '18965 SHAMBHAVI RICE MILL SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI JAYA LAKSHMI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SUGUNA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara rice flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ROHINI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMURTHY MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganapathi oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'javajji apparao rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri santhashimatha floor and oil', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Shamim', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Majjigowramma flour and rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LALITH RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FLOUR MILL GANESH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIMALA MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANJANIPUTHRA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'satya sai floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi Kumar floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S N RAJU RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mahi pindi milli', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMASWAMY RICE MILL AND FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA  OIL AND FLOUR Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Babu flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RANGASWAMY FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MOULALI FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vengamamamba borugula batti', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M Kavitha Floor Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka flour and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siddhan spices', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Modhakondamma Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mahalakshmi Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva sri dhal and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kakani rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA DURGA FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANYAKA TRADERS CONTS SRI LAKSHMI SRINIVASA', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '28']
[' Industry Name ', 'Srinivasa Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sonia oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Thandavakrishna Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Mohan Krishna rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri syamala flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahalakshmi floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Umar flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Damayanthi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SUBBALAXMI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'alugoju Surya  Satyanarayana murthi flour rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M S DEVI RICE OIL FLOUR MIL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'JP food industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Masha Allah floor mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHALUVADI VENKATESWARA RAO AND CO', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara venkata satyanarayana rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rajyalakshmi Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KOTESWARA AGRO PROCESSING PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gunti Anjaneya Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VARALAKSHMI FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Balaji Agro Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Annapurna Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara traders jnkpalem', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ganesh Modern Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI BALAJI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vasavi Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Grain Products like Yellow Corn Grits and Confectionery...etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Durga Oil rotary and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa oil shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SATYENDRA CORPORATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Veersmma Talli Ganuga', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri veera anjinayya oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'siva kesava oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KANAKA DURGA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Pasam Koti Reddy gingelly seed merchants', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Siva oil rotary', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'durga lakshmi gingelly oil land flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'J SATYANARAYANA OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVASA OIL  FLOUR AND RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ayyappa Gingil Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'satyanarayana Kirana shop', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'tirumula venkateaswarao oilV', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Babakhan oil mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sree padmavathi venkateswara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Ganapathi oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RAVI OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS SRI RAJYA LAKSHMI OILS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramalakshmana oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mini Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara flour and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satyanarayana oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Durga floor and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama Gingle Oil and Coconut Oil Production', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KANAKA DURGA MALLESWARI OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Lakshmi oil and general merchant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI DURGA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Devi Vijaya Lakshmi Oil And General stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kanakadurga Flour  and Oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi narasimha oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ADDA BULIYYA LEASE HOLDERS YELLARAMMA FLOUR AND OILS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'poojitha oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Venkata Durgadevi floor and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Veera Brahmendra oil rotary', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA KRISHNA OIL MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ganapathi oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAXMINARAYANA OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA POWER OIL GUARAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'O SUDHAKAR OIL ROTARY MUDIVEDU', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'nagamani kalathuru', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAGA SWATHI OIL AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'M S ELAHEE DECORDIGATOR KOSUVARIPALLI ROAD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'santhi oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri satya vinayaka coconut oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'v munirathnamma oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Durga Bhavani Oil Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'g satyanarayana rao oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'maha lakshmi flour mills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'surya oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateshwara flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sai Balaji noone ganuga', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kanaka Durga flour and Oil mills', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'pavan kumar core oli mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'satyanarayana', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Krishna Flour and rotary mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI FLOUR AND OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sampathivinayaka oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LELIMA OIL TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAROJANAMMA FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LEPAKSHI TUBES PRIVATE LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI BALAJI OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri simhadri oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SATYA OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhanalakshmi oil and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Yellamamba oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vepuri agro products private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satyavathi oil rotarty', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkataramana oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri naga venkata Durga mani oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata sitarama oil mill general stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SriRama Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijaya durga flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'V muralli krishna oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SURESH OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri srinivasa hair oil industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI VENKATA DURGA OIL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sasi Rotary Ganuga Oil Mimi Flour Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satyanarayana Oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi rice and oli flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Veerabhadra oil Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'satyavathi oli mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara flour oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI CHATURVEDI OIL ROTARY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'eilahi flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Chakra Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAPTHAGIRI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'jai kisan flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'saibaba traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara Ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Krishna Rice Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vijaya baskara industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chenchulakshmi flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srinivasafloormill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI DURGA RICE ANF FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rajeswari rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'pothuraj reddy chilling mechin', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'karimullashakhadari rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Krupa sagar flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MEHAR BABA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Samrajyam Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'biccavolu primary agriculture co operative society', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI THIRUPATHAMMA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'radha krishna rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI SRINIVASA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateshwara rice mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'INDRA FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'S K REHMAN FLOOR MULL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESHWARA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAJARAJESWARI FLOOR AND GRINDING MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KANYAKAPARAMESWARI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ganesh Durga Flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Flour Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kandibedala Ajay Kumar', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SSS AGRO FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srinagaseshamunindra floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Muvvala Seetharamaiah flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'G C SHIVA REDDY PINDI MISSION', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramkishore flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramarao Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara Flour and Oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Anjaneya pindi millu', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri veerabadhra flou r and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MALLAREDDY PINDI MISSION', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ganeshmentalamma oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri rama industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE VENKATESWARA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAI CHARAN MODREN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BALATHIMMA REDDY FLOWER MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DHANA LAKSHMI RICE FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi ganapathi floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kmuntaj', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MVM PADMAVATHI DALL AND FLOUR', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswa Rao Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sarampati appalachari rice powder mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BALAYOGI FLOUR AND RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mahalaxmi Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'TVN REDDY PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RAMANAMMA FLOWER MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'V V SATYANARAYANA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vijaya lakshmi flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Durga flour andrice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BHASKARA FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'dv subrahmanyam', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ashirwad Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Jeti Chandra sekar Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NIRANJAN BABU FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Balaji flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Durga flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'bangarammatalli flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAI SIREESHA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SATYA SIMHDRI FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Narasamma Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'dhanalakshmi oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satya durga floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'subhashini flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI POORNA SAI FLOUR MILLERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Prasanna Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'laxmanarao floormill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Batnapadu Kistaiah  Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswarara rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chndhravathi Pindi  mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RAJYA LAKSHMI FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Tagore traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'G chinnanna flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Durga Flour and Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Chukkala Narapareddy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Suryanarsimha Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kanaka Durgaa flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'surya Raghava oils flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Saibaba rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramalingeswara Satyanarayana Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVASA FLOOR AND OIL MILLS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ome sai ram floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Satya lakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Bollineni Indira', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KRISHNA VENI FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'prabhavathi floor mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri kanaka durga malleswara floor and oil', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chalasani padmavathi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA LINGESWARA MODERN RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Delux Pindi mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vinayaka Flour Mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Kasturi flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'papinaidu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkat Rao Floor Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satyawada Veera venkata satya', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Ganeswara Floor and Oil', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GEETHANJALI PINDI MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Nagabushanam pindi mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri viswesawara Bhavani Rice and Floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Tarak Flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SURYA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA PINDI MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'G NABI SAHEB', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'saleem floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'T HANUMANTHARAYA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ganesh ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lskshmi Ganapathi Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'narasimhulu floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'svn flour mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi prasanna', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GOWRI SANKAR FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'nagabhushana gowd floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Nemalapuri Krishna Veni', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'HYGIENE FOOD PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sivaramaiah pindi mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI DEVI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kusuma Harinadha Ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Reddi ramunaidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ANIL FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Seetharama Rice and Floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'panduranga rao floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kameswari Sri Modern Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SATYANARAYANA HELLAR AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sahastra pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BABU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'flour ginna', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Marilla rajeswari floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DURGA OIL and FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BALAJI SEMIYA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MARIDI MAHA LAKSHMI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'midde sambamurthy', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Annapoorna Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI RAMANA FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Karuna', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Santha grain mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srivenkateswa rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PATTABHI RAMA FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Vijaya Kanaka Durga Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'jayalakshmi rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESHWARA FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'jyothirmaya rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI PRASANNA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijaya lakshmi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VEERA VENKATA SATYANARAYANA FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'veera Venkateswara floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'V C VENKATESH RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MARRAPU TAMMINAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'JyothiFlour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Narayanaswami Floor Milk', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'AYYAPPA EXPORTS FOOD AND AGRO INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'M N  Brahmachary Floor Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vaishnavi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MEENAKSHI RICE TADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIRAT ICE AND COLD STORAGE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'baba pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Masthanvali New Modern Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATARAMANA FOOD INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SamisettyPurnachandrarao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Purnachandra rao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Mahalakshmi Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAGULAMEERA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Tarun sai industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srirama rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Dhanalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Narsimha Mini ice plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'balaji oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sirirama floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sanyasi raju floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri veerabadhra flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'jay lakshmi flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Bhavani general stores rice and flower mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI MANIKANTA GANGA RICE AND FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVAS FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata Rama rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BISMILLA FLOUR MACHINE', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srivenkateswarariceandfloormill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vigneswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ANKAM SUDHAKAR RAO', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'prasad floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sai laxmi rice  and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'nookamambika rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Jesus rice and floormill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VIJAYA DURGA FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'lekkala satyanarayana rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS KAMAKSHI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkteswara saw mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sree Rama Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA LINGESWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri swami pindi millu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Prasanthi Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'seetharamaanjaneya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SEETHA RAM FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kondavelagada rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'UDAY BHASKAR FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'padma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Hanuman flour  mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'suryanarayana murthy rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATARAMANA RICE AND FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'tripurasundari traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NOOKARAJU OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateshwara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI VIGNASWARA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'prasanthi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kandula vasavi pindi mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MAJETI LAKSHMI NARAYANA AND SONS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'JAYALAKSHMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RamaKrishna Rice And Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri dhanalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'shirdi sai traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'tirumala rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkata padma flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAGARAJU FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkata Durga oil and Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama gopala', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE LAKSHMI NARAYANA PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAXMI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri veeravenkatasatyanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa oil and dall mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Bojjaganapathi Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE MURALI MOHANA BOILED AND RAW RICE MILL PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'm s Dhanalaxmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'palagani Ajay flour grinding mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE LAKSHMI NARASIMHA PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vasavi steam and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KALANGI MADHUSUDHAN RAO PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RAMU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ms SREE MAHALAKSHMI AGRO PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'K Venkata Swamy', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Veera Balaji Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkata padmaja flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PONNURU KASIVISWANATHAM FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'jajula veera venkata rao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Jwalamuki flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kantheti Venkata Kanaka Lakshmi', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI MAHALAKSHMI FLOUR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kasturibai floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Anjaneya Foods', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkatasubba Reddy Flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkatalakshmi flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GAYATRI FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'baikala polamma pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi floor mills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LANKA APPARAO FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'H and H pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Jyothi Flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sanjeeva sai flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRIRAMANJANEYARICE flur mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi venkateshwara modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI GANAPATHI OIL AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sree Venkateswara Floor Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE LATHA PINDI MILLU', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'AMRUTH INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI MANIKANTA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'gousia flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'manikanta pindi millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KHAJA NAYAB RASOL FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Amogh Agro Foods Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI RAM RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RAFHI MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkateswara kirana and flour sho', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Godavari Roller Flour Mills pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'prabhat coffee mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANKIT POLYSACK INDIA PVT LTD formerly Sajjala Woven Sacks Pvt Ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ganesh Tea company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'balaji coffee works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYACHANDRA COFFEE WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Fresh and Honest Cafe Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'sri sai satya agencies', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ganesh coffee industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'New Durga Coffee Works', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka coffee works', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF INSTANT COFFEE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Edupuganti organic foods', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RAO PRAKRUTI VYAVASAYAM', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAM JAGGERY INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANESH RAO JAGGERY UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Venkateswara Jaggery Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATA RAMANA JAGGERY INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Manikanta Jaggery', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'Green Farm Agri Products Jaggery Division', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JAGGERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'arunachalam floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF JUTE STICK POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMBA SRI VANI APPALAMS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI PAPAD INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SIRI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NANDINI POP CORN', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi Mahila Grameena Udyogi', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'TIRUPATHAMMA SWEET SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SATYAVATHI HOME FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KRUPA SWEETS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI PRAVILLIKA FOOD PRODUCTS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KALYAN SWEET SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NEW ASHIRVAD MURMURAS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amalu Appalam products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'CHANDRIKA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Mercury Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai Teja Papads', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'anjaneya papad rings', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Food Products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'balaji food products', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Padmavati Mahila Grameena Udyogh', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'kanaka varshini agency', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'R D Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'CH JAYANTI VASUDEVAN PAPADS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Panjwani food products v', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Saravana papad works', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SIRI HOME FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SVR FOODS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'LAKSHMI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHAVEER FOOD PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SURYA CHAND PAPAD PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PAPADS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'PURNA PACKAGING INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'USHODAYA ENTERPRISES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '50']
[' Industry Name ', 'SHADRUCHI FOODS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N R agro food industry', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'AATREYAS AGROS AND FOODS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Manam food processing industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SV AGRO FOOD PRODUTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ayyappa enterprise', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Godavari food products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya pickles', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'Amrutha pickles', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai priya pickels', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sivaji Pickles and Generals', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANNAPURNA PICKLES AND FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S SMT FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai priya enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'AVR pickles', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Usha Pickles', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Rama pickles', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Meghana Food Products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Kamadhenu Agro Food Products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF PICKLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PALANI GANESHA BEVERAGES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA BEVERAGES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESHWARA ICE CANDYS AND COOLDRINKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMBA SIVA SOFT DRINKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 't venkata Nageswara rao ice plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HKGN WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sattar cool drinks', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mahaboob basha Ice factory', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HAJI VALI COOL DRINK SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'INDUNION FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vaishnavi mineral water', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri devi sairam industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Sri vijaya laxmi Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Royal water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VEERA ANJANEYA COOL DRINKS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBRAMANYASWARAONES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF SOFT DRINKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIJAYA LAKSHMI SAGO FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '35']
[' Industry Name ', 'MANGAL UDYOG', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'bavanarayana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI STARCH', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'K Ramanjineyulu floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SLV INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'N Subbu Singh flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vislavath Sankar Naik flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PARAMESHU BIOTECH PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '222']
[' Industry Name ', 'SIVA SHANKAR RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sanyasirao modern flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'koteswararao modern mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA FLOUR AND RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PONNAPALLI SRINIVAS FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEMI AUTOMATIC FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi chennakesava flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sai enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'hajara  flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kandula shankara rao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALA NARAYANA REDDY FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'krishnama naidu Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice and flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P Subba Lakshmamma Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nandish Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venugopalreddy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Latha sree pindi mission', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chandra shekar reddy flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sahithi Flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVI KANYAKAPARAMESWARI RICE FLOUR AND GNOIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOMMI SATTENNA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi ganapathi floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Lakshmi durga floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ramu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Siddaiah Flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHTTALA SATYANARAYANA  FLOUR  MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madina flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAMEER ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESWAR INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SEMI AUTOMATIC FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HEMASUNDARFLOURMILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANDUKURI VIJAYALAXMI FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Manufacturing of Starch / Sago', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJARI FOOD PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MODERN FOOD PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya food products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Chennakesava Agro industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Maze Grit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 's r k r poultries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'DEVI POULTRY FIRM', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mvapparao poultry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sita ramanjaneyulu rice mill polisettipadu', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vineela Emu processing unit', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Jeeya Poultry form', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALSAMI COLD STORAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Meat Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'SRI NEDHI AGRI SCIENCES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ELAINE CROP CARE', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'VIKAS AGRO PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA SIVA SAI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RD Srinivasan', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijayarathna nursery', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'parameswari rice mill and floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Lalithadevi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkata surya Satyanarayana cashew', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri jaya lakshmi dall floor boiled rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vijaya durga oil pro PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'V R AGRO EQUIPMENTS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'AAYUSH MILK PRODUCTS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Balaji milk centre', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Heritage milk bulk center', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DODLA DIARY LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DODLA DAIRY LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'RADHAKRISHNA MILK LINE', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'HERITAGE FOODS LIMITED BYTAMANJULURU', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'THE ARIA CO ORDINATE', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DODLA DAIRY PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'model milk products p ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'venkata ramana dairy', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MILK CHILLING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Milk Products Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'pamur milk line Pvt ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'DODLA DAIRY LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jyothi Dairy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'krishna district milk producers mutually aided cooperative union limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BRINDAVAN MILK PRODUCTS GANTAVOOR', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'sri sai ganga dairy products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HUTSUN AGRO PRODUCT LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'surya milk dairy', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI MILK LINES PVT Ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'KSN Dairy', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAXMI VENKATESWARA BULK', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIJAYA VISAKHA MILK PRODUCERS COMPANY LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AMARAVATHI MILK AND MILK PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Goutham Dairy', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya Durga Dairy', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vallabha milk products private limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tirumala Milk Products Private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Sri chakra milk products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'prasad reddy industry 656 thimmapuram Kambhamvaripalli', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Heritage foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'visakha Dairy', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Surya Milk Chilling Centre', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'masqati dairy products limited', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'srinivasa milk foods', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BUMIPUTRA MILK PRODUTS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'Rama Chilling Center', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa milk cooling center', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'HATSUN MILK CHILLING CENTER', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRAVANI MILK CHILLING PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Parag Milk Foods PvtLtd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'THE KDMPMACU LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'CREAMLINE DIARY PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'K D M P M A C U LTD MCC CHILLAKALLU', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vallabha dairy products 190 4 MAHAL RAJUPALLI KAMBHAM VARIPALLI', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI TIRUMALA MILK CHILLING AND KOVA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'VALLHABHA  MILK PRODUCTS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'TIRUMALA MILK PRODUCTS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '34']
[' Industry Name ', 'VBM Cooling unit', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HERITAGE FOODS LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tirumala Milk Products Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'THE KRISHNA DISTRICT MILK PRODUCERS MUTUALLY AIDED CO OP UNION LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'Lakshmi Durga Milk Line', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'heritage foods limited', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Sangam Dairy Milk Chilling Center Appikatla', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SREE VEERANJANEYA MILK PRODUCTS INDIA Pvt Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'PALASEETHALA KENDRAM MANDALA SAMAKYA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MOUNIKA MILK DAIRY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'THE KRISHNA DISTRICT MILK PRODUCERS MUTUALLY AIDED CO OP UNION LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VALLHABHA MILK CHILLING UNIT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MILK CHILLING CENTER HANUMAN JUNCTION', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SHRUTHI MILK PRODUCTS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama krishna milk dairy', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'venkateswara milk dairy', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'HERITAGE FOODS LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Sri Padmavathi Womens Milk Dairy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vasavi Milk Dairy', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ms venkateshwara dairy products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Dodla dairy private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Haritha Dairy Products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VALLABHA MILK PRODUCT PVT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'SRIRANGAM MILK PRODUCTS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Dodla Dairy Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri padmavathi womens milk dairy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sangam milk producer company limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'TIRUMALA MILK PRODUCTS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sangam Milk Producer Company Limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Dodla Dairy limited Nelavoy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'nature light', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'New Gayathri Milk Diary', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Herittage milk chilling', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI BALAJI MILK CHILLING CENTRE', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Chilling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'THE KRISHNA DISTRICT MILK PRODUCERS MUTUALLY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Supraja dairy pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Cream line dairy products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'KDMPMACU BMC UNIT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KDMPMACS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VISWA SOUBHAGYA MILK PRODUCT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THE KRISHNA DISTRICT MILK PRODUCERS MUTUALLY AIDED COOPERATION', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ramanaih milk center', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sabhapathi Khadi and Rural development Association', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CREAMLINE DIARY PRODUCTS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Heritage', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri vinayaka bulk milk cooling unit', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BULK MILK COOLING CENTER KASAPETA sri Vijaya visakha milk producers company LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KMUMP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VYSHNAVI DAIRY SPECIALITIES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'CHATRI MILK DAIRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'BMCU KANDLAMADUGU', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'The krishna district milk producers  mutually aided co op Union limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'the mpmacu limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri rangam milk production', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'lakshmi narasimha milk dairy', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna dairy', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'mana dairy products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala milk products pvt LLtd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Murali Krishna Milk Products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA VISHAKHA MILK PRODUCERS COMPANY LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'CHITE DEVI MILK SUPPLIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Heritage Foods Limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri Vijaya Vishaka district Milk', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Katha ice creams', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sridurgalaxminarasimha milk diary', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vijaya Visakha Milk Producers Company Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai balaji milks and milk pro', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dairy farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dairy farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DODLA DAIRY LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI LAKSHMI VISHNAVI DAIRY SPECIALITIES Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'JEEVAN DAIRY PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Tirumala dairy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'gosala', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing & Pacing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri srithik dairy products Pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing & Pacing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'tirumala milk products Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing & Pacing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '49']
[' Industry Name ', 'vasista dairy', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing & Pacing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PP POLYMERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing & Pacing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Milk diary product', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing & Pacing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Masqati Dairy Products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MODEL DAIRY PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Surabhi Foods', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI PRATYUSHA ENTERPRISES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'jeevan dairy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi milk line', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Naveen Dairy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Anjani devi Group Resort Corporation', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri kamala dairy', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ANJANI DAIRY FOODS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Maruti Pala khova sweets fast food', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA VISAKA MILK PRODUCERS COMPANY LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri vijayavisaka milk products limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai Srinivasa milk line', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SATYA MURALI KRISHNA FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRINIVASA MILK AND DAIRY PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'kanthi vennela icecream', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI MILK SUPPLIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'amaravathi dairy foods', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hima Jyothi Bindu Ice Cream', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna dairy products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gokul dairy milk products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Vennela dairy farm', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Arun manufacturing of milk products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Milk producers mutual aided cooperative  society', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Murali Krishna Milk Products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Boddu mohanarao vishv dairy', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jafar milk dairy', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI AGRO FORM', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kallakuri foods private limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'surya dairy products', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MOON ICE CREAMS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khaleel Palakova', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENGAMAMBA ICE CREAMS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mohan lakshmi milk products', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KDBPMACU Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'akram palakova', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI GURU VENKATESWARA FOOD PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Nandini milk', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS AGENCIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'model dairy Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '138']
[' Industry Name ', 'DIYAN DAIRY PRODUCTS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JUBEDA PALAKOVA', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vepuri frozen foods Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Navya Frozen Foods', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Durga Ice company', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRICHAKRA MILK PRODUCTS LLP', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '144']
[' Industry Name ', 'SRIRANGAM MILK PRODUCTS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'Nandi milk products private limited', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'RAOS DAIRY FOODS RAZOLE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA DAIRY PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VALLHABHA MILK PRODUCTS PVTLTD', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '78']
[' Industry Name ', 'Sri vyshnavi dairy specialities Pvt limited', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '120']
[' Industry Name ', 'Gokul Dairy Milk Products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi Dairy Foods', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PANDA DAIRY PRODUCTS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '13']
[' Industry Name ', 'VENNELA ICE CREAMS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Chendu Diary products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Saanvu dairy foods', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Kalpataruvu Dairy products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Muralikrishna Milk Products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing and Dairy products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Springtime Frozen Food company', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing and dairy products (integrated project)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sowjanya Cooldrinks', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing and dairy products (integrated project)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SWATI DAIRY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing and dairy products (integrated project)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYALAKSHMI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing and dairy products (integrated project)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri venkata satya dairy foods', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing and dairy products (integrated project)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gousia icecreams', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing and dairy products (integrated project)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venila ice candy and ice cream', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Heritage Foods Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '83']
[' Industry Name ', 'Vitamilk Dairy Products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri vijaya visakha milk producers company limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '70']
[' Industry Name ', 'SHRUTHI MILK PRODUCTS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Virat Crane Industries Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '62']
[' Industry Name ', 'Dodla Dairy', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '42']
[' Industry Name ', 'Uma cooling mill centre', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI DURGA BUTTER MILK POINT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANITHA SRI DAIRY PRODUCTS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CREAM LINE DAIRY PRODUCTS LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '51']
[' Industry Name ', 'GAYATHRI MILK DAIRY PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'DAIRY FORM', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Chandras milk dairy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'THEJES DAIRY PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '44']
[' Industry Name ', 'sri Nidhi products', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Primo Polymers', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk Processing And Packing Of Milk And Milk Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '26']
[' Industry Name ', 'S V flouring mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANIKYAMBA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chaitanya pindi mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'O muni lakshmi Floor mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateshwara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Venkateswara decodiating', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kattebasweswara flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANJANEYA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi Floor Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAM TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYANARAYANA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bagyalakshmi rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prakash flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vakula surya satya traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakadurga enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'URBAN CASHEWS LLP', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri gajalakshhmi dal and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Supriya Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri surya prabha rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai jyothi flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga bavani pindi mission', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kalli matha mini floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMAN DALL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PYDIMAMBA MINI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai Lakshmi Floor gingelly and general stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAMSULA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOGESHWAR RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Annapurna pindi', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kartikeya dhall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KMR Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswarao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rajendra mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'velangini harshita modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARISETTI LAKSHMI FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jahnavi floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RR FOOD PROCESSING INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'gowriswara parameshwara ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'sri padma sai trading company', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkta Padma rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ample foods', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'BRMHANANDAM MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANIKYAM RICEMILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siddeswara Decordicator Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAMCHANDAR RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARSHITHA SEEDS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anasuya grain mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANNARAYANA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGALAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUDADLA VARI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajani flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'millets mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHINNAMMA TALLI FLOUR MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krupa floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Padmanabha Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LACHANNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMAKRISHNA RICE AND FLOUR MILLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sita Ratna Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanakadurga flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhagyalakshmi ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Balaji Dall mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara flour and oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri pavan Dal flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ANNAPURNA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Sainadh Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Chandrayudu floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATESWARA RICE TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi Gingili Process', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Raghumaiah and sons', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Tirumala Venkateswara Rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Gowri shakar rice and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Adi narayana flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sk bibijan flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shavuda pindi mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGESWARARAO FLOUR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree amrutha enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS SIVA KUMAR FOOD PROCESSING UNIT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopavaram rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL narasimhanapalli', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shiva lakshmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Murali krishna rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balaji rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohana Modern Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'TUNGABHADRA AGRITECH PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW VEERA BHADRESWARA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Millet and Grains Processing.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JAMAL WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai Hanuman Mineral water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vamsi water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pyarry water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'padhmavathi cooling water', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMRUTHA DHARALU PURIFIED DRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS SRINIVASA WELFARE SOCIETY WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishtam venkatarao R O plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vipula minerals', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LEO BEVERAGES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GOWTHAMI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kambalapati seva sangam water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya chandra industaries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'are parvathalu trust', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhavani Mineral Water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI COOL WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Rajasekhar Reddy Water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NARRA WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lalithaa purified cooling water', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVAS DRINKING WATER', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vuyyuru Brothers Water Suppliers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M S GOLDEN WELFARE GROUPS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri chandu waterplant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasavi minaral water', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sameera cool water and cool cans', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BABU AQUA TECH', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'REVATHI MINERAL WATER PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srirama koteswararao ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'amrutha mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Maheswara mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOTTAM MAHESWARI WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri krishna charitable Trust', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'maruthi floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HEALTH WATER PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri uma water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Spring foods India private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sridevi water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivas Reddy Water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amaravathi water plant', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Water Suppliers', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri ranga purified water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI AMMA BHAVANI PURIFIED COOLING WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nallapareddy water foundation', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PAVAN MINERAL FOUNDATION', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ganga water foundation', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jalaja', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESWARA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'surya water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Reddy Sekhara Water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jayacee aqoa products', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sathya sai mineral water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai water foundation', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Varada reddy water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SLV  mineral water', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NARAYANA SWAMY  WATER FOUNDATION', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'himalaya water foundation', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HRUSHI PURIFIED DRINKING WATER FOUNDATION', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Suri mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Government Mineral Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'varada water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'satyasai charitable trust', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yoga mineral water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Moulali water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raheem waterplant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Navjivan aqua  industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAREMMA MINERAL WATER PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DHARANI WATER PURIFIED PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Venkateshwara purified mineral water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'YSR WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka Durga Mineral water', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LS Hitech', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ELAKUNTLA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tanuku Consumer Cooperative Stores Narayana Packaged Drinking Water Plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ss mineral water', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri vigneshwara enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Pathuri Minerals', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KETHIREDDY SURYA PRATAP REDDY WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHANANDHI COOLING AND PURIFIED DRINKING WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tirumala Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NOOR WATER PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KVN AQUA INDUSRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Jyothi Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Lakshmi chandrika surakchita', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Babu mineral plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pandu purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vigneswara Drinking Water', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ravindra purified mineral water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'blue drop water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SJ drinking water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi venkateswara mineral water service', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vani Purified Water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri bhavani drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Oms bioaquaminaralwater', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hygienic Mineral Water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree Rama water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NTR sujala sravanthi mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mineral water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga suraksha mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'perams drinking water swachandra seva sangam', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA PURIFIED DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KAVYA SRI WATER PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'siva ganga packaged drinking water', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TULSI AQUA', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Water Health India Pvt limited', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ysr water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta aqua mineral water', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARMADA PURIFIED DRINKING WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Keerthi Mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aishwarya water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sv water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DIVA GANGA WATER TREATMENT PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUHAANA ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vayuputra foundation', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'masha Allah purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parvathi water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AQUA INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai RO WATER PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI SEVA TRUST MINERAL WATER PLANT AND ICE PARLOUR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kapernahome purified water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jayalakshmi mini ice plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KUNDANA PURIFIED WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGAMUNENDER WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MODHAMAMBA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri pydimamba purified drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Aqua Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sai balaji packaged drinking water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'yuvasakthi  water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kaveri Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SMI Minority seva society', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bujji Aqua', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SPV MINERAL WATER INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'psr water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Maha Nandi Aqua', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'CRYSTAL WATERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'madeena s m s water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIGNESWARA WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VYSHNAVI WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'wisdom associates', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VENKATA SAI WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'supraja foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Polamamba Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARMADA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'pavithra jyothi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srivari Aqua Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SURESH PURIFIED DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI CHENNAKESAVA MINERAL WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Royal mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mother ganna akshaya susheela seva sanghan', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Krishna Water Plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amrutha bindhu water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sathya sai purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R N cristal minaral water', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA VINAYAKA AQUA INDUSTRIE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Tirumala Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SURYA MINERAL WATER PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RATNALAMMA TALLI CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUN WATER PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Yelamma Thalli Mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'swashakti mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BROOKLYN BEVERAGES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vengamamba Sujala Water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GAMMA ENTERPRICES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ameen Aqua plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Krupa water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'anjini purified water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thumma Chevireddy healthcare welfare society', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parameswari Water Plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Karthikeya Water Foundation', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vera anjaneya mineral water', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Balaji Purified Drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kambapu RO water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Haseena Water Plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAWAZ WATER PLANT', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'veerabhadra water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MARUTHI AQUA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'hanuman water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dr water health plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sridhar charitable trust', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AQUA PURE', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shiva gangs purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Noor Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'CHEGIREDDY RAMA LAKSHMI REDDY SOCIAL SERVICES SOCIETY', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Munendra muni mineral drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'LUCKY MINARAL WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AYL drinking waterplant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R Bargav Sun Rise Minaral Water Plant And Cotten Packing Box', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S KAVERI PURIFIED WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Siva Ganga Water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ravi purified water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Appalanaidu water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kushi aqua water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BVR AQUAFLOWS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KKN FOODS AND BEVRAGES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Blue Mount Water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tabitha water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHA KRISHNA LUCKY AQUA', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KENERO WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri gowtham harsha sai mineral water foundation', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JALI ICE COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANKAMMA MINERAL WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri peddintlamma beverages', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BBR purified drinking water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAMSI MINERALS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MUKTHESWARA SURAKSHITHA MINERAL PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Mineral Water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANS Water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PULI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ROYAL AQUA PURIFIED DRINKING WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI GANGA RO WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Mineral Waterplant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI THIRUMALA PACKAGED DRINKING WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA GANGA WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'harikon enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganga Bhavani Water Plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAHAJA PURIFIED WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SR WATER SUPPLIERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sujala Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'KGN MINERAL WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subaguru Yogendra Swamy water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'drwater', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai teja water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MINERAL WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aazeen purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mega Traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'divya water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thanishka Enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SV AQUA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri sai anjaneya water industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANGEL MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK Water Suppliers', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JR INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'IBM MINERAL WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GURU PURIFIED DRINKING WATER and COOL WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasapurifieddrinkingwater', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUJAALA AQUA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Y RAJA ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI GARUDADRI MINERALS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI ANJANEYYA MINI MODERN RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAISHNAVI RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Pilyanam s v s s samudreswari', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Venugopala Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KASINAYANA RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara mini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kameswara modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI VENKATESWARA REGD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'neelima mini modern rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayalakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Lakshmu Naidu Floor Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANUSHA MODERN RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vasavikanyakaparameswari mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ganesh Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mini modern rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Ganga Devi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sitarama Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'subani saheb rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sambasiva rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RATNALAMMA RICE MILL FL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri kondanda Rama rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI SREE SAI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pandarinadha rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms lakshmi thirupathamma rice', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar Ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TAJ rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Ravindhra mini modren rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayabheri Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MAHALAXMI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA RAMA KRISHNA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri venkata ramana rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYAKONDA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'mata mahamai mini rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'siva Sankar rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI MINI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VIGNESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai ram industries rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA PADMAVATHI RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhuvaneswari modern rice and flour  mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N ABBI REDDY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI TRAIDES or Jai Dhanalakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SRNINIVASA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vasavi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri anjaneya rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHANA LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI SRINIVASA RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Rice Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veeranjaneya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYA VEERANJANEYA RICE AND FLOOR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srivenkateswara rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gowri Sankar Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARAYANA OIL MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramakrishna modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sanapathi satyam rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Renuka Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Udaya bhaskar rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshmi maruthi rice and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANCHANA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Rice  Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA RAGHAVA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI KATAKSHA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VEERA VENKATASATYANARAYANA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D Venkata chalana Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Seeta Ramanjaneya rise mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srilakshmi narasimha swamy rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI GANAPATHI RICEL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri bahavani baktha anjnyya rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai anjaneya  flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI HARINADHA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sai sudha rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHA KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maha lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rajamma rice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lavanya traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Narasimha rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'veera venkata satyanarayana rice oil and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI RICE AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI ANJANEYA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri durga malleswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nandhini Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'sri Rajarajeswari Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata ramanjaneya rice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Mohan rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMASRI KRISHNA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA MINI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A Radha Krishna chetty Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Srinivasa rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkata mutyala narayana murthy rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRADHA KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'veeranjaneya rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vamsi Krishna modern rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N S challam', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA MODREN RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA SRI MODERN FOOD PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'uma malleswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMA KAMALA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'K SATYAM FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rama modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chaitanya Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI PRIYA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI GURU ANJANEYA RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VVS SAI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramana Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri jaya laxmi venkata narasimha', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'venkata reddy rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI KRISHNA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jaya Bharat Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Leelamohan traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'DVN Trading Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'manikanta modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri venkata Durga modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srilaxmi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANYAKA PARAMESWARI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRIVEERA VENKATA SATYANARAYANA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai bhavani modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DHANALAKSHMI SRI SAI RAMA TRADING COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri siva priya rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'satyadeva modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sai durga modern rice', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Venkateswara Puffed Modern Rice Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Veerabhadraswamy Modern Rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai lakshmi Ganapati modern ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Anjaneya Binny Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Annapurna Rice mill Unagatla', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sai rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sree Chennakesava modern rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M NARAYANAMMA MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijaya food products', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Venkata Ramana Raw Ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G TAVITA NAIDU FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMA KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Sai traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri lakshmi venkateswara rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASAVIOIL AND MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI GANAPATHI AGROS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Surya Prakash flore and rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Balaji traders', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri Venkateswara Modern Boiled And Raw Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Sri Satyanarayana Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'vijayalakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Varalakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Naga venkata sai modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri Vijaya Durga Modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI KAMAKSHI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'SRI RAJESWARI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'VASAVI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri usha Lakshmi modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Agro  products pvt  ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri venkateswara modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JBR MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '42']
[' Industry Name ', 'Vijaya gowri Varalakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganesh Rice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Nalamaramma flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', '8SRI SAI KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANJUNATHA FLOUR MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'Sri satyanarayana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri raghuvendra rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA SESHADRI MODERN RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KOTA DURGA MODERN AND RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA PADMAVATHI MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri sai Kamal modern rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'surya vamsi foods and vijaya bhaskar rice        mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri satyanarayana rice mills', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'sri Lakshmi modern rice mill penukonda', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISWESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Gowri sankar rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri rama chandra rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri panduranga rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ADARI VENKATARAO RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara rice flour and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dhanalaxmi mini modern rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI DHANA LAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri sai prakash rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri vera Venkata satyadurga rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v v satyanarayana rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Laxmi Narasimha rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Shankar mini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya naga Jyothi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopal krishna traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sai venkataramana agro tech', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'annapurna rice and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sitharama rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHITTAMMA RICE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Appikonda surinaidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAILA BHRAMARAMBA MALLIKARJUNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'THOTA LAXMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Damodar rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASANTHAM RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VEDANAGASREERICE TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shiva shakthi modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara rice mill seetharampuram', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satya krishna modern raw and boiled rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Lakshmi tirupathamma rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateshwara Modern Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'kusuma pindi milli', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai rama modern rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAXMI MINI RICE AND FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shirdi sai modern rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tirumala tirupati venkateshwara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri venkata satyanarayana Ganesh rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Balaji modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI KISHAN MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHA KRISHNA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v v kantharao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri satyanarayana modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri rama mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramakrishn rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkatesa Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS SRI SAI ANNAPURNA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI SATHYA MINI MODERNE RICE AND FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KATAMESWARI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Balaji rice And flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SriVenkateswara Modern Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI HARI HARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri vijayalaxmi rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri muridi anjaneya swamy jinning factory', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P maha laxmi flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HIMAVATHI FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOOR  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RADHAMOHANA FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna Rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Karuna mini rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'merry rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARAYANA MODERN RICEMILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA MALLIKANTA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'srinivasamodern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'srivenkateswara Ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SR MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jailaxmi Modern Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMAN RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Annapurna Modern Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vaibhava venkateswara agro food', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'svr modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sivani modern Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'kankadurga rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata srinivasa mini Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sitaramaraju rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara modren  rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'khaja Garibul Namaj rice and flour', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T chadra reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri vibhavana Agro industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAGHUNATHA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri jagannadha modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'RANI HARITHA MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRAVANI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'eswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHAVI FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'reddi pushpavathi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHAGYA LAKSHMI RICE AND FLOOR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SANTHI RAMALINGESWARA MINI AND MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ashoka modern rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MM DORA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri varalaxmi industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bandaru rajarao rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'M V Satyanarayana flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Benny Modern Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMAKRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sridevi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ippalapolamma Rice Flour Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri peddama thalli rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri venkateshwara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Annapurna Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kodandaram Ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateshwara Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKTA YAMUNA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAMANTULA NARAYANAMMA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi narasimha ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '23']
[' Industry Name ', 'Sri Venkata Ramana rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'papannamma rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Satya Annapurna Rama Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI ANJANEYA MINI MODERN RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sreenivasa rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'rama mohana rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Agro industries rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri venkateswara rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI VENKATA RAMANA BABY MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri varahalakshmi nagamani rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri annapurna rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nageswara  rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'suryachandra modern rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Ramesh Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'K SADAKAT ALI KHAN MODERN RICE AND FLOOR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKAT RAMANA MINI MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara  Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pathivada Satyanarayana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gopi krishna rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANLAKSHMI RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SREE RAMA MINI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIGNESWARA MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shanthi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SIVA DURGA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Govindamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree krishnapushpa mini modern ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVANI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'GANESH MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Durga Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai balaji modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEI ANJANEYA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA SATYANARAYANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Modern Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Karnal kottamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri veeranjaneya rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA KAMAKSHI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI KARTHIKEYA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'Sree Krishna Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Modern Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'geethavani rice milll', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MADAR BINNY MODERN RICE MILL MUDIVEDU TOWN MUDIVEDU', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Harsha modern rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri kamakshi tai rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata sai rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BALAJI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BRR RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Seetharamanjaneya Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'PADMAJA FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI BALAJI SATYA NAVYA RAMANAMMAMODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri thirumala modern rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'padimamamba modern rice mil', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATA SAI MANIKANTA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'sri lakshmi narasimha swamy mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata lakshmi rice and oil mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'SRI GOPI KRISHNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'sri lakshmi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIRAMA FLOOR AND RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Swathi rice flour and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DBS AGRO INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS Vijaya durga floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAPURNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sai ram modern rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABUBAKAR RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMANAMMA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SEETHARAMA TRADERS CONTS KODANDA RAMA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'VALLEVALASA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKATESWARA MINI MODERN RICE AND FLOOR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara mini modern Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KANAKADURGA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI JAGADEESWARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri viswakiran industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri venketeswara rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'KOMALI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAMANA MURTHY RICE AND FLOUR AND OIL MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri annapurna modern ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkata Lakshmi Durga Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gayatri modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subrahmanyeswara rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jaya Lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAPURNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA BINNY RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DHAKSHANYESWARA ROCE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata padmasai vinny modern rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Ram Rice Flour Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SOBHA AND SULOCHANA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Datta sai mini modern tice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sri veera venkata satyanarayana rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KUMARASWAMY MINI RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kanakamahalakshmi  rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'khaja rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri satya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'nandhana vara lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI SAI GANAPATHI MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ANNAPURNA MODERN BINNY RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATA RAMANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree sai rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BALARAM RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Srinivasa rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S V V SANKARA RAO RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAGYA LAKSHMI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'rahamat modern ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'UMA VENKATA LAKSHMI RICE DALL AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HIMA VARALAKSHMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA PADMAVATHI', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara Rice Traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Ramana', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalaxmi devi flour and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA MINI MODREN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA TRADERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA SWAMY MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohan rao rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Teja rice  and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maheshwari Modern Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateshwara Moden Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANNAPURNA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRI SRI VINAYAKA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri varlaxmi modern ricemill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'PARVATHAMMA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bhagya lakshmi modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VASUDEVA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATESWARA MINI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijayakanakadurga Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Padmavathi Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SAI VENKATA PADMAVATHI KRISHNANJANEYA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'Pilla sanamma', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Lakshmi venkateswara rice mill and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Madhavi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srivenkata padma', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramulamma binny rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yaswanth Moderen Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Lakshmi Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sitaramanjaneya Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI KRISHNA MINI MODERN RICEMILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYALAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI DURGA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'vigneswara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya venkata Lakshmi modern rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'yojanapriya modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri srinivasa rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'dhanalakshmi rice oil and shore mill company', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya sai Lakshmi kanakadurga modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri srinivasa Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara Modern Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K Modern rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Gayatri rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sairam ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri lakshmi Venkateswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ventaka laxmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga bharati Ricemill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATHYA NARAYANA MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANKADURGA BINNI MODREN RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sree Ganesh rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAXMI MINI MODERN RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMALAKSHMI MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai lakshmi rice and dall mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYA SAI RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Narayana rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri bhimalingeswara mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PAVAN SAI KRISHNA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara siva sai bhagavan mini modern rice and flour milk', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanchanadri agri products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sai veeravenkata satyanarayana rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganga suryavathi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Tirumala rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Arjuna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maridiyya naidu rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri ganesh mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Rama Rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI POORNA CHANDRA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATAPADMA MINI MODERN RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Venkateswara rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VEMKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI PENDYALA PARVATHI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Mahalakshmi rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATHI MINI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri satyanarayana rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri krishna rice mil', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'sri venakata sai mahalakshmi rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SITHARAMANJANEYA RICEMILL AND FLOORMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHASWAMY RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MODERN RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Nagamani Rice and Floor Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI JAYA LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAXMI SATYA SAI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri laxmi narasimha rice and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MUBARAK Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'KPR RICE MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Sri pydimamba mini modern rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DEVI ANNAPURNA RICE MILL LEASE V V CHOWDARY others', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parvathi Shankar rice and Floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANIKANTA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Bharat Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sir Lakshmi Modern Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Siva Geeta Rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chennakesava Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI PARAVASTU AYYAVARU MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI GOGARBHA RAMANANDA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata Siva Sai rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkateswara mini modern rice flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VEERA GANILAKSHMI BABY RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sneha rice milling', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ASWARTHA NARAYANA SWAMY MODERN RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri Venkateswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATA SAI MANIKANTA MODERN RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VIGNESWARA RICE PRODUCERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALANJANEYA RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Ramakrishna modern ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri kanakaratnam Modern Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KONAGALLA SATYANARAYANA AND OTHERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'HANUMAN TRADORS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkatarama rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KALKI KAMESWARI BOILED AND RAW RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanakadurga Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GURURAGHAVENDRA MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga bhavani traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkatarama Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAMA RAMANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'The  Raghavendra swami mini modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'REGAM SATYAM RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Srinivasa rice and oil mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'satya rama  rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiva shankar rice mills', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MOHAN KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAIBABA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syamala traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri balaji rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA SHAKTHI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkata rama rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MARUTHI RICE DHALL AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOSEENA MODERN RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai baba mini modern rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIVENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PPR TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sai rammini mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KUMARASWAMY TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sarala Foods Pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'Sri sambasiva mini modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS PYDIMAMBA MINIMODERNRICEML', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Engineerings', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '65']
[' Industry Name ', 'Rami reddy agro industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Sri Gopala Krishna Rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri lakshmi sahithi mini rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jitendra modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SUBRAMANYESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA MMRFM', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'TAGORE MODERN RAW RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri lakshmithirupathamma modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi venkatasai modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SATYA SAI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRIRADHAKRISHNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya lakshmi enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'New KSP marketing company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'sri rama satyanadayana rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICE TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara rice and floor', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gopala Krishna Modern Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Radha Krishna Rice and Floor Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri hari rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYANARAYANA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI CHENNAKESAVA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama varaha Annapurna mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SURYA RATNA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA RICE TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Padmja Mordern Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATA SATYA LAXMI MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MGR RICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Venkateswara Traders', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara rice and flour mills', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinayaka Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mahalakshmi Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKADURGA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri dayananda Saraswathi Binny modern rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Himalaya Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sita Rama Modern Raw Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'venkata jaswanth rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA RICEMILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri Venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata srinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sabari girish modern rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Visalakshmi modern rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURYATEJA RICE MILL KRISHNA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vinayaka modern rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYAGANESH MINI MODERN RICE FLOUR AND MINI OIL EXPELLER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Maddiletaiah Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SREE BASAVESWARA RICE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRIKODANDA RAMA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Narmada rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ramanjaneya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Rama Krishna Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chennakesava rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Someswara modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'All fine rice industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shiva durga modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'NANDINI RAW AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SrI seetharamanjaneya rice and floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Venkateswara Oil  Rice Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Annapurna Rice Mill and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI TIRUMALA VENKATA LAKSHMI MINI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai madhavananda', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE ANJANADRI MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI  INDRUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA DURGA RAMA RAJU MODERN RICE  AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sei lalshmi srinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sapthagiri ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Satyanarayana Rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BASAVESWARA RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srivenkateswara rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Maruthi Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'raghavendra rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYANARAYANA SWAMY RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA  MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA RAMA KRISHNAIAH RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vasave Kanyaka Parameshwari Rice Mills Private Limited', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '125']
[' Industry Name ', 'Sri padmavathi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MKM Modern Rice Mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Seetha ramanjaneya ricemill Nadigaddapalem', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kodandarama Boiled Rice and Oil mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KVR Ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI THIRUMALA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI  VENKATESWARA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI AMBABAVANI RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkateswara Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree Basaveswara Traders', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DIVA KRUPA RICEMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'YESU KRUPA RICEMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SOMESWARA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Swetha modern ricemill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nanda kishore reddy rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA GIDDANJANEYA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA RICE INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI DURGA RICEMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'National Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Anjaneya modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Harihara modern ricemill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BALAJI MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'RAMA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Jayalakshmi Modran Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Maruthi Modern Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'VIDYASAGAR RICEMILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri lakshmi venkateswara mini Rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NIZAMUDDIN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE VENKATESWARA SWAMY SILKY RICE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'QUALITY MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri anjaneya swamy modern rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Maa Mashroom industry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MUSHROOMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Viswanadha Mushroom Farm Pvt Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MUSHROOMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Threeyaka Agri Foods', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MUSHROOMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Freshbowl Horticulture Pvt Ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MUSHROOMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '127']
[' Industry Name ', 'Raghavendra Swamy', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MYROBALAN POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PSB OIL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KASAMSETTY LAKSHMAIAH SETTY SONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GOPA MACHA RAMU OIL MILLS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI DURGABHAVANI ENTERPIRSES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri Malli Marjina Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'karshak agro industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RYTHU MITHRA ORGANICS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'NEEM POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'TATA Smart Foodz Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '71']
[' Industry Name ', 'Esveeaar Distilleries Private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '24']
[' Industry Name ', 'Varun Beverages Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '144']
[' Industry Name ', 'Kalis Sparkling Water Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '34']
[' Industry Name ', 'MURARI COOL DRINK SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vesavi food products private ltd Plot no  24 Ramireddypalli Chandragiri', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'JAI BALAJI  FOOD  PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Carbonated water based drink', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VEEDHANTA BIO TECH INDIA PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Nutraceutical', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'haritha oils', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkata Ramana oil Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi narayana oil mill and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shyamala decordicating industry', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Tirupati Venkateswara Oil Milk', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Venkatarama Ginger Oil works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kistappa oil mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Oil Mill  General store', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G Venkateswara Rao oil and Flour Mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Venkatakrishna', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mupendra Oil Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vamsi Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RADHIKA VEGETABLE OILS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '39']
[' Industry Name ', 'GANESWARA RAO OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI AYYAPPA GINGELLY OIL AND FLOUR WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'FLOUR OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama gingile oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rao', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vigneswara Oil and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMARAO oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Surya Sankar Oils and General Stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vijaya durga oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RAO OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GAYATRI GINGILI OIL AND FLOOR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GOWRI OIL MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Venkata Ratnam Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRi venkata rajesh and co', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri varalakshmi oil rotary', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAGA VENKATA SATYANARAYANA OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI MANIKANTA OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CARDA PHENOL INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI NAGA VENKATA BALAKRISHNA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Prameela Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAMANA FLOOR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jagannadha Guptha', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Ram Oil Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sathosh laxmi oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya oils', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI GANESH OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri paradesamma oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi ganapathi narasimha oilmills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI AMARAVATHI GROUNDNUT MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'krishnaveni agro oil and products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'C TRIVENI SAMBASIVAM OIL ROTORY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI VENKATA SAVARAYYA CASHEW NUT SHELL LIQUID INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEVEN HILLS SOLVENTS PVT LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'venkateswara oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'seetharamanjaneya oil mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SriVenkateswara Oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAYALAKSHMI OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMATH SEETHARAMA LAKSHMANA BHARATHA SATRUGNA OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naresh Flour and oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Seetharama rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Appalaswamy Batchu', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Durga oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DATTA OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga oil flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISWASAIOILMILLS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '23']
[' Industry Name ', 'Sri Venkateswara oil and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri nagalakshmi oil  flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Venkata Satyanarayana Oli Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ainavilli Subbarao', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYAKALA AGRO OIL PRODUCTS LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '42']
[' Industry Name ', 'GV KIRAN KUMAR OIL MILLS', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LAXMI OIL INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman oil mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata durga oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Padmavati oil mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkataswara floar mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raja Rajeswari oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SATYANARAYANA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DEVI OIL AND FLOUR WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramanjaneya gingelly oil and pinto works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rohini ginger oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vighneswara Tilly works', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANAKA DURGA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESHWARA GINGALI OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji gingin oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARUNODAYA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bagya Narasimha ginger oil and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMA OIL  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi Narasimha oil and general Stores', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOPALAKRISHNA MURTHY OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Appalaswamy Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalaksmi Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ACHUTA RAMA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajarajeswari oil and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Annapurna Floor and Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Murthy Oil Mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Babu Floor Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SYAMALA FLOUR AND OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANA OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddeswara Oil Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vigneswara oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Laxmi Durga Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Pavan siva Oil mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI RAM MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Seetharamanjaneya Flour and Oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRAVEENA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna kumari oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA DALL  GROUNDNUT OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'nagasai oil refinery', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAINADA OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA OIL MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Ramana oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'suribabu oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Flour And Oil Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KUKUMURI VENKATESWARA RAO OIl MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANJANEYA OIL MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'vijaya durga organic food products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sree Rama oil Mills', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'TEJA OIL ROTARY', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Ganesh Coconut Oil  Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rama civil industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'OM SRI SAI BALAJI NUNE GANUGA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'geethika rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakamahalaxmi oil rotary', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESH GINGIL OIL FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veeranjaneya Oil Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Om Shakthi Oil Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara oil rotary', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Indiramma Oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yadavalli oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA GINGILI OIL AND FLOUR  MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'subbarao oil mile', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA GINGLE OIL AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'subbarao oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateshwara oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Veerabra rao Rotari mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Oil Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Lakshmi Oil Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka durga oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AJITH OIL ROTARY MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Oil Rotary', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana general and cake merchants', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara oil rotary mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA OIL AND FLOUR MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SALAMATH OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mabu suhani oil mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMANAND OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMANAND OIL ROTARY 2', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA MAHESWARA OIL ROTARY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMANA OIL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara oil rotary mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kothapallu ramulu oil mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ashok oil rotary mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'N ramu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mallikarjuna Oil Rotary', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIVARAMULU OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI OIL MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagaraja oil and General stores', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'S Venkata Surya Prakasa Rao Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S RAFI OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PRADA TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AMANDA OIL MILL KVB PURAM', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J APPANNA OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satya deva oil and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri tirumala oil Rotary and flour mills', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijay durga oil rotary', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivas oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Venkateswara General store', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VINAYAKA VENKATA SAI DURGA GINGLE OIL AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA GINGELY OIL MILLS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aswini Oil Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sridevi traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA OIL ROTARY', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Manikanta avinash mini oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DURGA BHAVANI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'PAVAN KUMARI OIL ROTARY AND GENERAL STORE', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajarajeswari oil rotary', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pavan kalyani mini oil rotary', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI KANAKA MAHA LAKSHMI OIL ROTARY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Hemalatha oil rotary', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANI SAI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms suryoday oil rotary cottage industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ram traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Namasivaya traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PAVAN OIL ROTARY', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Rotary', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Mineral Water', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lasya water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik shariff water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Leela water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BAVAPURI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHANA VENI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS RAKSHITA PACKAGE DRINKING', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ammi riya beverages', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Basha Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivas water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Mineral Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jamiya Masid Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara mineral water', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M S SRI SRINIVASA AQUA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Akil Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI GANGA WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ma Doctor Choice Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANANTHA PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rasheed Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NAGURU BROTHERS PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Purified Drinking Water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI TIRUMALA MINARAL WATER PLANT', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'YSR Mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M M G SUCHI PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Samba Water Purified Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ganga Water Plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Purified Drinking and Cool Water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Radha Krishna Drinking Water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'padmavathi mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Best Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SELTZER BEVERAGES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Thirumala Purified Drinking Water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ratnas enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA MINERAL WATER', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Sree janatha industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'THE TNARASAPURAM PACS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI SURYA VAMSI AQUA INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUMA WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganga Agencies', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YUVAN BEVERAGES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Manikanta water solutions', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RAGHAVENDHRA RO PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lavanya Water Plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'K S M CASHEW INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HEALTH DROP FRESH AND PURIED DRIKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sujala Waters', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'sri karuna water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'panchayat water plant perapuram', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AQUA WORLD', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri Aditya mineral water palnt', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAHILA SEVA TRUST', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Prabhakar charitable trust', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA GANAPATHI AQUA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA PURIFIED DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS siva sankar memorial trust', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N SURE AQUA INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bb industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sun Aqua Purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Friendly Aqua', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TRUZEN AGROS', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'GAYATRI BEVERAGES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'STAR PACKAGED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Sai balaji aqua industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Subhakari Water Products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jalagari Venkatalakshmi', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kishore water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAESWARA PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Durga Water Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai lakshmi mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SK JEEVA JALAM', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raju purified water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hoshika water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Varshitha aqua industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CRYSTAL INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BANGARAMMA THALLI SEVASAMITHI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Bhavani Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Karthik Purified Drinking Water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HEALTH BEVERAGES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Marlothu Satyavathi Welfare Association', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pallavi Industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HARITHA WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sanjeevani mineral water', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga mineral water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijayadurga enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VASAVI WATER PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GAYATRI PACKAGED DRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Best Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Venkateswara enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Vizag beverages', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SURYA FILTERED WATER', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHIRAJ AGRO PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '32']
[' Industry Name ', 'G M R INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATI FILTER WATER', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GODAVARI RO WATER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI AQUA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri mukundh food and bevarages', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BISMILLAH FOUNDATION', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA NANDI BEVERAGES', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YSR water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI AQUA INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'rao rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Naga sai polymers', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHALAKSHMI AGENCY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HYMAVATHI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHARATH MATHA COFFEE', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Deepak sai Sri traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Radha food products', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'saraswati modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi ganesh floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meka Peda Nagireddy Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dhanlakshmi Rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bhargavi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Laxmi Ganapathi Genral store', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gangadhar fruits', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'INDIAN GROCERIES COMPANY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri gayatri rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'brick unit', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI POLYMERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VAIBHAVA LAKSHMI RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'daivadeenam rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shrdi sai Baba', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Dhana Lakshmi mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasamodern ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Revathi flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dhanalakshmi rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai jagadeeswara modren rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Sri Gayatri mini modern rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri durga industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri siddi vinayaka cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri venkata sai durga rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri veeranjaneya rice and flourmill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SEETHARAMANJANAYA PARA BOILED RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata lakshmi rice and flour mills', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri modhamambha rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sir Vijayalakshmi rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA AGRO FOODS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siva rice industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri laxmi venkateswara', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NEW JYOTHI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri shiridi Sai rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S Ammannamma', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LP RAMAYYA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Modern Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Prema Sai rice industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Venkateswara Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venketeswara cashew producers', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRINIVASA TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'jyothisri rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'B N S FRUIT RIPENING CHAMBERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'cashew nuts industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Sri raja rajeshwari rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Rahamat ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLAH RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAGHAVENDRA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MUBARAK RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Rama sai Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing of Food Grains', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PACKING OF VEGETABLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PACKING OF VEGETABLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'kk industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PACKING OF VEGETABLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'ganesh agro oil industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PACKING OF VEGETABLE OILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'UNISTEM SALES  AND MARKETING LLP', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PACKING OF VEGETABLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'ANAND INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PACKING OF VEGETABLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SUGURESHWARA PINDI MACHINE', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing unit of Dal Powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'floor mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing unit of Dal Powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DK POWER MASALA', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packing unit of Dal Powders', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Mallikarjuna rice working company', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY CLEANING AND DRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Andhra Pradesh states seeds development corporation limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY CLEANING AND DRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Venkateswara Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY CLEANING AND DRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Ramana Rice and Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY CLEANING AND DRYING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Balajee Modern Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sai baba rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satyannarayana traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkataramana rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VIJAYALAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateshwara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri shiridi sai baba rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NARASAYYAMMA FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri srinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'manikanta mini rice mill g lingeswrarao', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SATYA SAI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ganga Siva parvathi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri dhanalakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'priyadarshini rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Bhagyalakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri bugga Malleswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chakra raja rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sagarmatha rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI VENUGOPAL RICE FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri p surya prakash', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Padma rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI DURGABHAVANI MODERN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'jaimata riceflour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Uma Maheswara Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI BABA MINI MODERN RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'padmaja rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'AJANTHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KODANDARAMA RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ramakrishna rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Lakshmi Parvathi parameswara rice and floor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI NAGARESWSRA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRINIVASA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara mini modran rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'baji baba rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'raic mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BHAGYALAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Saibaba Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Vinakaya Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DEENDAR RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Ganapathi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SEETARAMANJANEYA RICE AND FLOOR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Atchutharama rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa Rice and Floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'lakshmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri mahalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VINUTHNA TRADING RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VARAHA NARSIMHA MINI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri lakshmi Venkateswara rice and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata karuna rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'anjuriramanamma rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi venkata ramana rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sai Srinivasa Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Govinda Rao Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Krishna Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vijaya saradhi rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATARAMANA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Padmavati modern rice and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DHANALAKSHMIRICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DURGA DEVI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri lakshmi rice and flor mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Girija Sankar small scale industry  rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sree Venkateswara modern ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkataramana Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMALINGESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ramalingeswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SREENIVASA TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri lakshmi Satyanarayana rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI RICE FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkata sai traders sri jayalakshmi Mookambica rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA DURGA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vigneswara traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Shankar rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS VIGNESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sai Srinivasa Rice Tech Cont sri', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Padmavathi Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PADMAVATHI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Gopala krishna rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri srinivasa rice and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sai pavan modern Ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kameswari Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE LAKSHMI VENKATESWARA FOOD INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAXMI TULASI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Teja Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI SRINIVASA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VEERAANJANEYA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Gowri rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'The pedapulleru large size cooperative credit society', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri ganesh srinivasa traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'thataraiahruda Swamy rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI RICEMILL AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Srinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswaraswami Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhana Lakshmi Rice Industry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'padmavathi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'AMARALINGESWARA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Srinivasa Lakshmi Rice Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri veeravenkata satyanarayana rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'padma Sri rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Prasanna Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi venkateswara modren rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vigneswara Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RamaNarayana rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkatasai rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vasavi trading Company', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Surya Rama chandra rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Jagannadha Surya Lakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATADRI RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'JHANSI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ANANTHAVALLI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GAYATHRI MANIKANTHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KRISHNAVENI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KALYANACHAKRAVARTHY COMMERCIALS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhanalakshmi Raw Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sharmasvalli rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri jaggaya rice and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Rice  Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sai Laxmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI BALAJI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venugopal  rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Grandhi Manikyala Rao Industries PVT LTD Leased to devi sri rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri bramarambice mallikharjuna swamy rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA RAMANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri VeeraVenkata Satyanarayana Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SURYA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri subhramanyaswara Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Engineering', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijayalakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sitaramanjaneya Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PALANI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'meenakshi rice industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkata ramana rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI VENKATARAMANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri GajaLakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'y srinivasa reddy', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PG Obulesu flour mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice and flore mil reddigudem', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VASAVI RICE TRADING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SIVA SANKARA SILKY RICE CORPORATION', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'nageswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ms RAGHURAM ENTERPRISES RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri manikanta rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Manikya Rice and Floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Siva Sankara Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Satyanarayana Rice and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'YSR RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ganesh rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijaya lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIJAYA DURGA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SHRI YELIGONDA RAYA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI MARUTHI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Lakshmi Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA NARASIMHA RICE  and FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Padmaa Rice Traders CONTS SRI SURYANARAYANA MODERN RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sambangi Kumar ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PNR Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijayalakshmi Ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'loknath Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkateswara rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'R valliamma balaji flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venugopala krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIJAYASAI TRADERS CONTR', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'lakshmi krishna rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'chandrasekhara rice merchant', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Narasimha rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Udaya Bhaskara Rice and Floor Mills', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Geethanjali Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri veera venkata satyanarayana rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Akshya Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkteshwara rice and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI SIVA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE VENKATESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BHAGYA LAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DEVI SATYA RICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ADITYA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sai rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SEETHA MAHALAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri chandra mouleswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'P Veera swamy Reddy Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICEMILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA RICE AND FLOORMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama boiled and raw rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA SURYA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sunkari gurunaidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sai rama rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri dharma lingeswara ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Lakshmi siva Sai Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SURYADATTA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA MINI MODERN RICE AND FLOUR MILL Of MATCH SRIHARI NAIDU', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Gowri shankara rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sv rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KHAJA KARIMULAH SHA MODERN RICE', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'M S BHANU RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATARAMA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI HARI HARA AGRO AGENCY', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI BALA BHASKARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata ratnamma rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA PADMA RICE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA PURNA SAI KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'hemadri rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAVYA KRISHNA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Hari Ginning and oil Rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri chandramala enterprises Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'L VENKAT REDDY RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Gopal Krishna rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMACHANDRA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VEERA VENKATA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri seetamamba rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sai siva rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sai venkata nagalakshmi raghavendra rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Rice  Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Gopala Krishna Rice and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'S kanaka durga flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Durga Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Anjaneya rice mill pedapadu', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATARAMANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ANITHA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI AMMA BHAGAWAN MODERN RICE  MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri annapurna rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA NAGA DURGA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KANAKA MAHALAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sree vani rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA KRISHNA AGRO FOOD INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata padmavathi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA SAI RICE FLOUR AND OILL MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata bullimamba Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Seetharamanjaneya rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri siva shankara rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkata manikanta nagasai satyanarayan rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SIRISHA RICE FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice and flour  mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Krupa Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'D B RICE TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'T S narayana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MSPVKD sairam rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata chalapathi rice traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi venkateswara', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sai satyanarayana floor and rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESHWARA  RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sree vijayalakshmi rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KESAVA RICE AND FLOOR MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRIRAM RICE INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkteswara Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswra rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SURYA MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KOUNTRY KITCHEN PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAJYA LAXMI RICEMILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'keerthi rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Laxmi Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Tirupathamma Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'devisri rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama  Rice Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sai Baba Rice and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'parameswari mini rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri maha lakshmi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Gandhi mill stores', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara flour mill yerragunta', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mahalakshmi Mini Rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI JANAKI RAMA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NARBAVI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri manikanta tredars', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijay lakshmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'mahalaxmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara modren rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijaya lakshmi rice and flour mills', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAXMIKANTHAM MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Veeranjaneya Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Thirupathi Reddy Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkata satya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri srinivasa modren rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MUNEPPA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srivatsa malleswara agro industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Nagaraja Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri vinayaka rama krishna rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SSN SWAMY RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Laxmi narasimha rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri vijayalakshmi traders Sri saravani  modern boiled and raw rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS LAKSHMI FLOOR AND RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LALITHA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'keerthi industries limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satpagiri traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'swasthi rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri rajarajeswari new modern ricemill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DHANA LAKSHMI RICE', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri srinivas a rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sai manikanta rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srivijayakrishna sambasiva rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Vinayaka Vijaya Durga Mini Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkata padmavathi traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateshwara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri devamma Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAIDU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Satyanarayana Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'bhakthavathsala rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RANGA PADDY AND RICE MERCHANTS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kusulamba Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri lakshmi ganapathi binny ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY RICE MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'HYMA MINI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KONA NAIDU RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srivenkateswaramodernrice', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BHAVANI SANKAR RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RANGANAYIKI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SVR PADDY AND RICE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri rama rice flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'grain mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAGUDU YERRI BABU RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'WADDI TRADERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'g chandram naidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'viswanath rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Floor and Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kanyaka parameswari rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri lakshmi traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Ramakrishna Rice and Flour Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice and flour', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkata srinivasa rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kondalamma Thalli Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata siva rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'TIRUMALA MINi MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'lakshmi rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijayalaxmi modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sai durga rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'INDU RICE PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi Saraswati rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkata Subbaiah Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA RAMANA MINI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi ramana rice and flour mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MALLIKARJUNA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ireddy ramarao and others', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SOMULAMMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA RICE AND FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Parvathi chandra sekhar ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Radhakrishna flour Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara rice and flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Ricemill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sabiha Traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri majji Gowri rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SR SAI MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sivaprasad floorand ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA MINI MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Durga Srinivasa rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Anjaneya Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'S L N RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sita Rama Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI MAHALAKSHMI MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vuthara Kumari mini floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Jagannath swami Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ARADHYA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rama krishna rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'DBS industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi Srinivasa traders', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Siva Parvathi Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sai Siva Anjaneya mini Modern rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri srinivasa rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Bhaktanjaneya Rail mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GANAPATI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MARUTHI RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Subhadra Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ramachandra rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri suryachandra rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MINI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri mahalakhmi traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri LakshmiRamana Ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VASAVI KANYAKA RICE AND FLOUR MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'annapurna ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'UMMADISETTI VEERA SESHU KUMAR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Baji Baba Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'lakshmi rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sreenivasa rice and flour mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata lakshmi modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sree kameswari rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'nagalakshmitraders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri vijaya lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri rajarajeswari rice and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'HAYAGREEVA FLOOR AND RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sai mini rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'satyanarayanaaa rice mill chevendra palem', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI DHANA LAKSHMI RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SANTHOSH MATA MODERN RICEMILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkateswara traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Anjaneya Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi venkateswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Seetharamanjaneya rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Ganesh Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi srinivasa rice and floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAJESWARI RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KRISHNA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BRINDAVAN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI GANAPATHI VENKATESWARA RICEMILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI MANIKRISHNA RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Usha Srinivasa Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA RICE AND FLOUR MIll', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS CHANDRA POWERLOOMS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SAI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri ventateswara rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Raja Rajeswari Rice and Floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sathyanarayana rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VEERANJANEYA RICE FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI NARASIMHA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Saranam Ayyappa Modern Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Pandu Ranga Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Bhavani  Sankar Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri himagirivasa uma maheswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SEETHARAMA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SATYANARAYANA RICE FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOWER MILL SELLER MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Raja Malleswari Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sitaramanjaneya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Ganapathi Flour And Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'M TIRUPATI RAO PADDY PROCESSING UNIT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri laxmi venkata krishnan', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Durga malleswara flour and rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SWARANA KUMARI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAXMI MANI MALA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'S narayana rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAXMI VENKATA SAVARAYYA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA RAMANA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshimi narayuna rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Madhusudhan Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Krishna rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sree vijayalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'CHITIKELA DALINAIDU', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Durga mini rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Balaji Modern Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ramakrishna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Ganesh rice flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateshwara rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA SATYANARAYANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri seetaramanjaneya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Nageswara Rao Rice Mill manduru', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Rama Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Indira rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIJAYA LAKSHMI KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SatyaPrakashRiceMill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Swarna Products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Jaya krishna modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijayalakshmi Rice and Dal mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Thirupathamma Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMADURGA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kancharapalli sreeramamurthy', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Vijaya Lakshmi Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA RAMANA  RICE  MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Devi rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Durga Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI NAGENDRA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENGOPALA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mahalaxmi Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'JAJULA VENKAIAH YADAV RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sai rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri kodandarama rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sitha maha Lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri srinivasa rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SEETHARAM RICE AND FLOOR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI NARASIMHA RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Dhanalakshmi  Ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhanalaxmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Surya teja agro products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kanaka Durga Flour Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata lakshmi traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI ANJANEYA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri annapurna rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVASA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Balaji rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'L sanyasinaidu rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VIJAYALAKSHMI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAJARAJESWARI AGRO INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara oil and rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Shakunthalamma', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ANNAPURNA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Siva subramanyam rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Muntaj Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Rama Krishna Rive Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ganesh Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE BALAJI RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkata ramalaxmi rice and floor mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Swamy Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Satyanarayana rice and flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkata raghavendra rice and floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SHRI SRINIVASA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Ganesh Rice  Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA MINI MODERN RICE  FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI GANGA BHAVANI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'POTTAMMATHALLI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Parameswari Rice and Flour Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LUXMI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Byreddy Simhachalam rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Revathi Modern Rice', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri damayanthi santhya modren rice  mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'padmalaya rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'mahalakshmi rice traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'khan and bros rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Reddy Ramakrishna and Others', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkata Ramana rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Satyanarayana rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'visweswara rice traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Radha Krishna Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'padmavathi mini modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Narayana Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Devi polish rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Radhakrishna Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'G V Ratnam', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'J JAGADISWAR RAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Viswanadha Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice and flour mill sekuru', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATESWARA RAW AND BOILED RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri prasannajaneya rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI PADMALAYA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sreenivasa Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Dhanalakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Seetha Ramanjaneya Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA SYAMALA AND HANUMAN FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkateswara rice and floare mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Vasavi Mini rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri srinivasa enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'S S L PACKAGINGS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara  Rice and Flour Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'REDDY ANANDARAO AND OTHERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'K Lakshmi Manahar Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA MODERN MINI RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Parvathi Parameswari Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VIGNESWARA RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kodandarama Rice and flour mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri srinivasa traders', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VIJAYA LAKSHMI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama rice and flooring mills', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MS Sri Rama Mini Modern Rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GORLE CHELLAMA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri saiteja agro industries private limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ALIVELU AGRO PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri venkata santamani modren rice  oil mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI RICE AND FLOUR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA RAMANA MINI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vigneswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Surya kanya rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KRISHNA RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Bharathi modern ricemill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BODDU PYDANNA DORA RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri maruthi mini rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GAYATRI RICE TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA PADMAJA RICE mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Sai Krishna RM', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NARAYANA REDDY AND OTHERS CONTS SRI RAMA KRISHNA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'vengamamba rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri malyadri Lakshmi narasimha swamy rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GANESH RICE AMD FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI SIVA SITARAMANJANEYA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SURYA SRI RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sai hanuman rice traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'kilaparthi devi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Surya rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Rama Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KRISHNA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srirama rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sri bhavani rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri hanuman agro foods', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'CHINATHALLI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sudha rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri venkateswara traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'S N R Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RANGA RICE TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Annapurna traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BALAJI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'PRABHU RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sridevi Modern Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sai Lakshmi Rice and Floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Vijaya Lakshmi Ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Kanaka Maha Lakshmi Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri sowbhagyalakshmi non trading rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VIGNESWARA FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'amarlingeswara rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara rice traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMACHANDRA RICE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri veeranjaniya rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KANAKAPUTLAMMA THALLI RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'karuna mini modern  mill and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVASA AGRO FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE AND FLOUR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRINIVASA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srinivasa rice industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA RAMANA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Jyothi Saya Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice and flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VAMSADHARA RICE WORKING COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATESWARA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Lakshmi Ganapati Rice and Floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Venkateswara Rice and Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Kodanda Rama Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'HANUMAN RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'srinivasa rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SATYA SAI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Janani Durga rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi venkata Satyanarayana rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi srinivasa floor and rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri lakshmi modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'R ACHHAMMA RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Shri Venkateswara rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MattaVenkateswaraovcoir industry', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMA TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VAASUDEVA GRAIN MILLS PVT LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri kanakalingeswara ricemill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI KANAKADURGA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Suresh rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'M S VARALAKSHMI RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SANYA ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RUDRA ENTERPRISES                                 ASTA LAKSHMI RICE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'CHANDANA RICE AND FLOOR MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SUNITHA MINI RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Siddi Vinayaka Rice Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Satyanarayana Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Satya Sai Rice  and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sun traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SREE LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Achimamba Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI MEHER CHAITANYA MODERN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'lakshmi venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri rajyalakshmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Srinivasa Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhanalakshmi Modern Rice Mill', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI BUCHIYAMMA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri tirupathi venkateswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'TAJ MODREN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Vijaya Lakshmi Rice and floor Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI BALAKRISHNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SATYANARAYAN RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri Raja Rajeswari Rice floor mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Veeranjaneya rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Sitha Ramanjaneylu Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VAYUPUTRA MILL TEC RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SAI RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri manjunatha rice mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Dhanalakshmi rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAMAKRISHNA RICE AND FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Mayuri Rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivasa Rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAGA VENKATA GUPTA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI RAGHAVENDRA MODREN RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BALAJI MODERN RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI GOURI SHANKAR  RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri navadurga mini modern rice and flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VANI RICEMILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Hari Chandra rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI VENKATA SIVAA RAW  AND BOILED RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GOWRISANKAR RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ramanjaneya Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MGR RICEMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice Mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Venkata Sai Manikanta Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MOULALI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SAISRI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VARALAKSHMI MILLTEC RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Srinivas ricemill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI sambasiva Basaveswara Anjaneya rice and floor', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Narayana Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'ANNAPOORNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MADINA RICE AND FLOOR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GUNA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ramakrishna Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAGARJUNA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SS TRADERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MAHABOOB ALI RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KHAJA KADHAR RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI SRINIVASA RICE AND FLOUR MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Ganesh Ricemill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA MILLTEC RICE MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SLV RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'surya narayana Ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Saptha Koteswara Venu Gopala Swami Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara rice millu', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SOMISETTY RICE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'KARIMULLA RICE MILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'VENKATA KRISHNA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'BALAJI RAW AND BOILED RICE MILLS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Duvvuru sujirith reddy rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Saraswati ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Balasubramaniyam Rice Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'P THIRUPALU', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Srivenkateswra Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Dhanalakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Uday rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MAHABOOBIA MODERN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SIVA KASI RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI GURU RAGHAVENDRA RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'NAVEEN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI LAXMI NARASIMHA MINI RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SRI PAVANA LAXMI NARASIMHA MODREN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Basi Reddy Rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'MUBARAK  RICE  MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri bhagyalakshmi agro foods', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkateswara Rice and Floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Radha Krishna rice mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Andhra rice mills', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Raghavendra rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMALAKSHMI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SAI BALAJI RICE MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri maddi anjaneya lakshmi balaji traders', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Krishna babu flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Guptheswara modren rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SURYA MINI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata lakshmi rice flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MARUTHI TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Sai Rice and Flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVM RICE AND OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Hussainsaheb', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Kanaka Durga Pulverizing Process', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAVAKUSA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Uma maheswari rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lanka Durga bangaru thalli mini rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SRI SEETHA RAMA MODERN SHELLER RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vijaya Lakshmi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Udaya lakshmi rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMA LINGESWARA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Poornima Agro Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Srinivasa rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SEETHA RAMA BOILED RAW RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jyothula Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Allada Gangadhara Rao Paddy Processing', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama rice Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHA KRISHNA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri Surya agro', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI BABA RICE MILL BHIMAVARAM', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shiridi Sai Rice Oil and  Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Teja agros', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RANGA RAJU RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '52']
[' Industry Name ', 'sri shridi sai rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mohan satya rice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri aditya rice and flour mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANANTHA LAKSHMI TRADING COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'sri venkata gayatri rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA RICE MILLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA LAKSHMI SATYANARAYANA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri vigneswara rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI KALI PRASAD PARBOILED UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara para boiling plant', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BHAGYALAKSHMI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'parisinaidu mini floor Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'D Venkateswara rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mavudi satyamurthy paddy processing unit', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri bhavani rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SriRam Rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'gopalakrishna modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Krishna Ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Sri Venkateswara Rice Mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Krishna Rice and Flour  mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vigneswara parvathi parameswara rice and flour mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa rice industy', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sree maddemanu gurrappa swami rice mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VENKATESWARA MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA DURGA MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chennakesavaswami Rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanaka Durga Rice and Flour Mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'suguna sri mini modern rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balaga Ramamurthy paddy processing unit', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri rajarajeswari rice and floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaga Narayana paddy processing unit', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi  Venkateshwara Ricemill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rice mills', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANESH RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vijaya Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Anand Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RICE AND FLOUR MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Rice and Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANJANEYA PRASAD RICE AND GROUNDNUT OIL MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA MODERN RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Lakshmi Durga Rice and Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pablo china srinavasarao flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'umamaheswaraRao flour mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateshwara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SWARNA GOWRI VISWESWARA GAYATRI MODERN RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri Venkateswara Rice and Flour Mill Bonangi', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARAYANA RICE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri reddi aaparao', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Saraswati rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CHANDU RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA RICEMILL', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Penta Narasam Naidu', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RADHIKA SRINIVAS MODERN PAR BOILED RICE INDUSTRIES Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Laxmi Ganapathi lalitha  modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri rayudu agro industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkateswara modern rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Rice and Floor Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ramanjaneya rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATSAI mini modern Rice and floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BRM Raju Rice Mill and Chilly powder', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI RICE MILL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD MILLS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Ramalingeswara rice and flour mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vaayuputra agro products', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bhogalingeswara Flourmill  Bonangi', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari Verdhan floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI VENKATESWARA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Rice and Floor Mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Maruthi MMRFM', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ambika Rice Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara modern rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara ricemill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri satyanarayana rice and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREERAMA MILLS RICE AND ROTARY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Prasanna Rice Traders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bhavani Sankar Rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KAMESWARI RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SATYA MODREN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'Padmavathi Srinivasa Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SAI NATHA RICE  AND FLOUR MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Seetharamanjaneya Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SUBRAHMANYESWARA RICE MILL', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai krishna agro industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'venkata lakshmi narasimha rice industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Vijaya Lakshmi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Rice Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi malakondeswara rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Ramana Rice and Floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya  Rice and Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA MODREN RICE MILL', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'INDIGO SEEDS PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa Rice Mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYANARAYANA G N OIL MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'brahmaiah industry', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PAPAYA TUTTY FRUITY AND JAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sree tirumala industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PAPAYA TUTTY FRUITY AND JAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'naveen food process', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PAPAYA TUTTY FRUITY AND JAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VIJAYA SPOORRTHI FOODS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PAPAYA TUTTY FRUITY AND JAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'smt hamasavenamma rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANIKYAMBA RICE MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Rice And Flour Mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna  raw and parboiled  rice mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'star mimi flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Radha Krishna rice and floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'M NAGAMANI', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SATYANARAYANA SITHARAMANJANEYA MINI PARA BOIL RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M Ramachandrareddy floor mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanyakaparameswara mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGALAKSHMI RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Leela Venkateswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gowthami Raw  Par Bolied Rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'VINAYAKA RICE AND FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanaka Durga Mini  flour and rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PALANADU PARA BOILED RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Para Biled Rice Mill', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '22']
[' Industry Name ', 'Bharathi milk foods', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PASTURISATION OF MILK AND MILK PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vedhasri dairy products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PASTURISATION OF MILK AND MILK PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S n pickles products', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HONEY PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Surpanch Grampanchayat  pickle', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAISHANVI FOOD PRODUCTS505911985657', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Durga Foods', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '49']
[' Industry Name ', 'HONEY ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'HANEEF FOODS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PICKLES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'vishnu sai Cashews', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Plant Tissue culture', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Greeno Agrotech India Pvt Ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Plant Tissue culture', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'MICCO LABORATORIES PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Plant Tissue culture', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Cosmo Solutions', ' District Name ', 'Guntur']
[' Industry Name ', 'Sikara Manufactures', ' District Name ', 'Chittoor']
[' Industry Name ', 'Vinayaka tissue works', ' District Name ', 'Krishna']
[' Industry Name ', 'Siddheshwara Paper Products', ' District Name ', 'Kadapa']
[' Industry Name ', 'Bharath digital printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'Shanthi digitals and Xerox', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sri Sai Maa Photos Laminations', ' District Name ', 'Anantapur']
[' Industry Name ', 'najarulla Khan Xerox centre', ' District Name ', 'Anantapur']
[' Industry Name ', 'SAI BHARADWAJA STATIONERIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Mighty cottage industry', ' District Name ', 'Guntur']
[' Industry Name ', 'Ambica enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Xerox shop', ' District Name ', 'Srikakulam']
[' Industry Name ', 'ganga bhavani purified drinking water charitable trust', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'DG Set 1000KVA', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dhanurjay rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Power Generation', ' Activity Name ', 'DG Set 1000KVA', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Hydel Power Projects', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tirumala Hydel Power Projects', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri dhanalakshmi cotton and rice mills private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri dhanalakshmi cotton and rice mills private rivate limited', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Trident Power Private Limited', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri dhanalakshmi cotton and rice mills private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Apgas power corporation limited GTPS vijjeswaram534350', ' District Name ', 'West Godavari', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Generation of Hydel Power', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '68']
[' Industry Name ', 'KRANTHI POWERGEN', ' District Name ', 'Krishna', ' Sector Name ', 'Power Generation']
[' Industry Name ', 'CHANDRASEKHAR AZAD SUNKARA', ' District Name ', 'Krishna', ' Sector Name ', 'Power Generation']
[' Industry Name ', 'mahalakshmi electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'Power Generation']
[' Industry Name ', 'RRP LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Power Plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SATYAKALA POWER PROJECTS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Power Plant', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '37']
[' Industry Name ', 'RVK ENERGY PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Power Plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'New Era Enviro venture Pvt Ltd', ' District Name ', 'Kadapa', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'M S Kumar Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Megha Engineering Infrastructure Limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '79']
[' Industry Name ', 'vyshaka solar energy systems private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE SAI ELECTRONICS', ' District Name ', 'Kadapa', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'AMARAVATHI TEXTILE PRIVATE LIMITED SOLAR PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'PMC Power private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Power Generation']
[' Industry Name ', 'AZURE POWER INDIA PVT LIMITED PLOT NO 13', ' District Name ', 'Kurnool', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation(>20 MW)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AZURE POWER INDIA PVT LIMITED PLOT NO 12', ' District Name ', 'Kurnool', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Solar power generation(>20 MW)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE ARKA GREENTECH PVTLTD', ' District Name ', 'East Godavari', ' Sector Name ', 'Power Generation', ' Activity Name ', 'solar PV cells and modules manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIVATHSA POWER PROJECTS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Thermal power plants', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'THE ANDHRA SUGARS LTD POWER DIVISION', ' District Name ', 'West Godavari', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Thermal power plants', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SJS engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Thermal power plants', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree venkata sreedevi power llp', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Thermal power plants', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '63']
[' Industry Name ', 'JSW Energy Ltd CPP 18MW', ' District Name ', 'Kurnool', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Thermal power plants', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '14']
[' Industry Name ', 'POOJA ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Waste Heat Recovery Based Power Plant', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '66']
[' Industry Name ', 'SREEDATTA BIOFUELS', ' District Name ', 'Krishna', ' Sector Name ', 'Power Generation', ' Activity Name ', 'Waste Heat Recovery Based Power Plant', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VS TRADERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri Valli Udyog', ' District Name ', 'Krishna']
[' Industry Name ', 'Siva soolini poly packs', ' District Name ', 'East Godavari']
[' Industry Name ', 'vasavi industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'shiva chemicals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'kanaka mahalakshmi associates', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'TIKI TAR INDUSTRIES BARODA LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Building Envelope Systems India Limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'nani plastics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ALI PLASTICS AND WATSE SCRAP', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri Ganesh enterprise', ' District Name ', 'East Godavari']
[' Industry Name ', 'RABBANI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'kadhirvelu paper plates products', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SIVA SAI INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Durga sundara govinda raju gas company pvt limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI RAGHAVENDRA OXYGEN COMPANY', ' District Name ', 'Chittoor']
[' Industry Name ', 'MS TARCHEM PVT LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VENKATESWARA CONSTRUCTION', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Padma industry', ' District Name ', 'Chittoor']
[' Industry Name ', 'VIMLA INFRASTRUCTURE INDIA LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'vengamamba char coal', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'GEEAARPETROPRODUCTS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Balaji Hot Mix Plant', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'NIKITHA BIO FUELS', ' District Name ', 'Guntur']
[' Industry Name ', 'sri hari  bio fuels', ' District Name ', 'East Godavari']
[' Industry Name ', 'SV BIO BRIQUETTES', ' District Name ', 'Chittoor']
[' Industry Name ', 'GANGA RASAYANIE PVT LTD', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sai Vaishnavi Enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'INDIRA LUBRICANTS', ' District Name ', 'Guntur']
[' Industry Name ', 'LIFE LUBRICANTS', ' District Name ', 'Krishna']
[' Industry Name ', 'GODAVARI LUBRICANTS', ' District Name ', 'Krishna']
[' Industry Name ', 'AVIGNA INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Jai hanuman lubrications', ' District Name ', 'Prakasam']
[' Industry Name ', 'VENKATA KRISHNA RUBBERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATESWARA RUBBERS', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI VENKATA RAMANA RUBBERS', ' District Name ', 'Prakasam']
[' Industry Name ', 'DURGA ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'KS PRINCETON RUBBER INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Master associates', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Vellis rubber industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'SR INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'rudhra industries', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'DURGA GANAPATHI INDUSTRIES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'VARALAKSHMI INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'MsLAKSHMI VENKATESWARA POLYMERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SARMASVALI DRIP IRRIGATION INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI VENKATA SAI MARUTHI PLASTIC PIPES', ' District Name ', 'Kadapa']
[' Industry Name ', 'A R KISSAN DRIP IRRIGATION PIPES INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'siflon dripsprinklers pvt limited', ' District Name ', 'Anantapur']
[' Industry Name ', 'KUMAR UPVC WORKS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Ballary Shipping Enterprises Pvt LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VanamazPVC Pipes Industry', ' District Name ', 'Guntur']
[' Industry Name ', 'DURGA INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'ALANKAR TUBULAR FURNITURE MFG CO', ' District Name ', 'Krishna']
[' Industry Name ', 'sri Vasavi plastics', ' District Name ', 'Kadapa']
[' Industry Name ', 'SOFT FOAM INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'LEO PRINT PACKS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'ADITYA PACKTECH POLYFILMS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'C B POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI ISWARYAMBICA PLASTIC INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'HANVITHA INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'padmavati polymers', ' District Name ', 'Kurnool']
[' Industry Name ', 'Prasad industries', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI PANDURANGA INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'ITS Tecnodue India Pvt Ltd', ' District Name ', 'Krishna']
[' Industry Name ', 'SURYA POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'MANAK PLASTICS PVT LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Vasista industries', ' District Name ', 'Krishna']
[' Industry Name ', 'BHADRA HDPE PIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ROOPAK PLASTICS PVT LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'RATNA HDPE WORKS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VIJAYADURGA PIPE INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SAI BALAJI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'MS POLYMERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'VENKATESWARA PACKAGES', ' District Name ', 'Guntur']
[' Industry Name ', 'R K POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VISAKHA TARPAULINS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SUBRAMANYESWARA POLYMERS UNIT II', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI BALAJI RUBBER PRODUCTS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'BALAJI RUBBER INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'GEETHA INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'SAI POLYMERS', ' District Name ', 'Kurnool']
[' Industry Name ', 'MAHALAKSHMI   POLYMERS', ' District Name ', 'Prakasam']
[' Industry Name ', 'LAKSHMI ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'Mangal Industries Ltd Plastic Division', ' District Name ', 'Chittoor']
[' Industry Name ', 'ANITHA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI LUCKY POLYMERS EXPANSION', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri Bhavani Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRIVIJAYALAKSHMI PLASTICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'swan polymer industries', ' District Name ', 'Guntur']
[' Industry Name ', 'SAHU PLASTIC INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'AMRUTHA POLYMERS PRIVATE LIMITED', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI SURYA PIPE INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'kumar plastic works', ' District Name ', 'Krishna']
[' Industry Name ', 'Lakshmi Industries', ' District Name ', 'Guntur']
[' Industry Name ', 'VENKATA SIVA SAI PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'KGN PLASTIC WORKS', ' District Name ', 'Chittoor']
[' Industry Name ', 'OM SRI VASAVI LAKSHMI SAIGANESH PLASTIC INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI ANJANEYA PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'CHAITANYA PLASTICS', ' District Name ', 'Kurnool']
[' Industry Name ', 'RR POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SHRI SRINIVASA POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'LUDETONG INDIA ELECTRONIC TECHNOLOGY PVT LTD', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SURYA TEJA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'DHARANI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sreegeethaindustries', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SIMHADRI POLYMERS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'M P POLYMERS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'CHANDRA PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'HARSHINI POLY FILMS leased to A R Enterprises', ' District Name ', 'Guntur']
[' Industry Name ', 'HOLOPACK SECURITIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SUDEEKSHA POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'HUHTAMAKI PPL LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'MAMATHA PACKAGING PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'SARVANI PLASTICS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI GURU RAGHAVENDRA POLYMERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'RIYAZ PLASTICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI LAKSHMI PLASTIC', ' District Name ', 'West Godavari']
[' Industry Name ', 'IML  POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SS international', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'svs bevarages', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sree Mahalakshmi Polymers', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRR Food Products Packages', ' District Name ', 'Kurnool']
[' Industry Name ', 'Vijaya plastics', ' District Name ', 'East Godavari']
[' Industry Name ', 'Syam slate working', ' District Name ', 'Prakasam']
[' Industry Name ', 'Vijaya plastic recycling unit', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Colgate Palmolive India Ltd', ' District Name ', 'Chittoor']
[' Industry Name ', 'sparkily enterprises', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VIJAYA DURGA UPVC WINDOWS AND DOORS INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SHIVA FABRICATORS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI SIGNA UPVC', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI BALAJI POLY PACKS', ' District Name ', 'Guntur']
[' Industry Name ', 'sri sai Krishna non woven bags', ' District Name ', 'East Godavari']
[' Industry Name ', 'SHRIZA POLYPACK', ' District Name ', 'Krishna']
[' Industry Name ', 'Chandana poly pack', ' District Name ', 'Kadapa']
[' Industry Name ', 'KP POLYOLEFIN SACKS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'RAJ PACKAGING', ' District Name ', 'Kadapa']
[' Industry Name ', 'VG POLIMERS', ' District Name ', 'Kadapa']
[' Industry Name ', 'VIZAG COMPOSITES AND ENGINEERING', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SANTHASRINIVASA INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI VENKATESWARA ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Surya Plastics', ' District Name ', 'Kurnool']
[' Industry Name ', 'LAKSHMI VENKATESHWARA POLYMERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'LAKSHMI VENKATESHWARA AGRI SOLUTIONS', ' District Name ', 'Anantapur']
[' Industry Name ', 'ANANTHA BIOTECHNOLOGIES AND ALLIED INDUSTRIES PVT LTD', ' District Name ', 'Anantapur']
[' Industry Name ', 'Hindustan Plastics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ECMAS AGENCIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Captain Polyplast Ltd', ' District Name ', 'Kurnool']
[' Industry Name ', 'kartikeya Lubricants', ' District Name ', 'Guntur']
[' Industry Name ', 'SREE VENKATESWARA ENTERPRISE', ' District Name ', 'Krishna']
[' Industry Name ', 'VENKAT SAI TRADING COMPANY', ' District Name ', 'Krishna']
[' Industry Name ', 'SRIRAM INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'bengal lubricants', ' District Name ', 'Krishna']
[' Industry Name ', 'Kumar grease', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Venkateswara Lubricants', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRIRAM INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Dulcis p', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI RAJESWARI ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'Mold-Tek Packaging Limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MAHALAKSHMI POLYMERS', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI SASHA POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI MARUTHI POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'RK polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'AMARAVATHI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Siva industries', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI SAI HARSHITH ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'MAHALAKSHMI PLAST', ' District Name ', 'Prakasam']
[' Industry Name ', 'NISSY POLY PACK', ' District Name ', 'Guntur']
[' Industry Name ', 'BHAVANI PLASTICS', ' District Name ', 'Kadapa']
[' Industry Name ', 'VIKAS PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'GLOBAL PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'PLASTOVISION', ' District Name ', 'Guntur']
[' Industry Name ', 'REVA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'USHODAYA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI SRINIVASA PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'HERITAGE POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Orange leaf wonders', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI KARTHIKEYA POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SHRII KRISHNA POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'J K PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'MALIREDDY KIRAN KUMAR REDDY INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATA SIVA PLASTICS', ' District Name ', 'Kurnool']
[' Industry Name ', 'PAWAN STAR PLASTICS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SAI ACHYUTHA INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'ACHYUTHA PLASTICS', ' District Name ', 'Kurnool']
[' Industry Name ', 'ANJANA DEVI CHANDRAKALA GOLD COVERING', ' District Name ', 'Krishna']
[' Industry Name ', 'EMVEE PLASTICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'MADHU SAI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'CARRIS PIPES AND TUBES PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'OSO INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'LAKSHMI SAI FLEXI FILMS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'lenira polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'DEW FOAMS PRIVATE LIMITED', ' District Name ', 'East Godavari']
[' Industry Name ', 'RAGHAVENDRA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'JITHESH PET PREFORMS', ' District Name ', 'Kurnool']
[' Industry Name ', 'SAI GOPAL POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'VIJAY POLYMERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'UNIVERSAL SECURE POLYPACK', ' District Name ', 'Krishna']
[' Industry Name ', 'G S R INDUSTRIES', ' District Name ', 'Prakasam']
[' Industry Name ', 'RAKESH POLY PACK', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Raj Riddhi Polypacks', ' District Name ', 'Kadapa']
[' Industry Name ', 'Naidu pipe Hdpe pipe industries', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'INDO POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Vasavi Polymers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Vasavi Plast Industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'Vasavi Tubes and Conductors', ' District Name ', 'Anantapur']
[' Industry Name ', 'P LAKSHMI POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Meghana Poly Plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'Prudhvi Polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Suryanarayana PVC Water Tubes', ' District Name ', 'East Godavari']
[' Industry Name ', 'Ms GALAXY PVC INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SURANA PIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SAMBHAVANATH PVC PIPE INDIA PRIVATE LIMITED', ' District Name ', 'Guntur']
[' Industry Name ', 'SREE KANAKADURGA INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'SURYA PLASTIC INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI VENKATA SAI RAM PIPES', ' District Name ', 'Kadapa']
[' Industry Name ', 'SONU STAR PIPES', ' District Name ', 'Chittoor']
[' Industry Name ', 'INDIRA PIPE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'GLOBAL POLYMERS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Devi Sri Industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'V CREATIONS', ' District Name ', 'Krishna']
[' Industry Name ', 'SIDDHARTHA INNOPACK INDUSTRIES PRIVATE LIMITED UNIT - 3', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATA SATYANARAYANA ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI KRISHNA CHAITANYA PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'Ms LAXMI VINAY POLY PRINT PACKS PRIVATE LIMITED', ' District Name ', 'Kadapa']
[' Industry Name ', 'seven hills shopping bag', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SSA ENTERPRISES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'PARDHU TRADERS', ' District Name ', 'Krishna']
[' Industry Name ', 'RIYAN SHOPPING BAGS', ' District Name ', 'Krishna']
[' Industry Name ', 'KESHAVA FABRICS PVT LTD', ' District Name ', 'Chittoor']
[' Industry Name ', 'AURO ENERGY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sravanthi lubricants', ' District Name ', 'Krishna']
[' Industry Name ', 'SREE BHAVANI LAMINATES', ' District Name ', 'Krishna']
[' Industry Name ', 'AQARIUS COMMUNICATIONS', ' District Name ', 'Guntur']
[' Industry Name ', 'Ranjita industries', ' District Name ', 'Guntur']
[' Industry Name ', 'DEVI SRI RAJESWARI PET BOTTLES INDUSTRIES', ' District Name ', 'Srikakulam']
[' Industry Name ', 'BANDARU POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'CRYSTAL POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri Venkateswara Pet Bottles', ' District Name ', 'Guntur']
[' Industry Name ', 'vijay plastics', ' District Name ', 'Guntur']
[' Industry Name ', 'J H Traders', ' District Name ', 'Kadapa']
[' Industry Name ', 'JAYANTHI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri venkateswara plastics', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri raja rajeswari scrap traders', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Pragati Plastics', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'MARUTHI ENTERPRISES', ' District Name ', 'Chittoor']
[' Industry Name ', 'S P Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI LAKSHMI KRISHNA POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'BINDHU INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA ENTERPRISES', ' District Name ', 'Guntur']
[' Industry Name ', 'Bergen Pipe Supports India Pvt Ltd', ' District Name ', 'Chittoor']
[' Industry Name ', 'BALAJI ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'ATHARVA ASSOCIATES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI RAMA KRISHNA POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'PLASTIC HOME', ' District Name ', 'Guntur']
[' Industry Name ', 'SAI RAM INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Navayuga foods Pvt ltd', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VENKATA MAHALAKSHMI PET INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'MOKSHADHA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRINIKA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'MURALI KRISHNA INDUSTRIES AND SRI PADDALA VENKAMMA BOTTLES company', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Swarna Lekha Polymers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Balaji  Industries', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SR POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'NKR PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri sai pet bottle small scale industry', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI TEJA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'MGM polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'KWALITY PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sivaji Polypacks', ' District Name ', 'East Godavari']
[' Industry Name ', 'SUCHAR POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SV POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Madhava Satyanarayana Polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'Dakshayani Polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'K R POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'ISHWARYA PLASTICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'vijaya Durga plastics', ' District Name ', 'Guntur']
[' Industry Name ', 'HAASINI MANUFACTURING COMPANY', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri Bhaskar polymers industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'SURENDRA PLASTIC BAGS', ' District Name ', 'Anantapur']
[' Industry Name ', 'NAGALAKSHMMMA PLASTIC BAGS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI RAMA PLASTIC INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'NARASIHMAPPA PLASTIC BAGS', ' District Name ', 'Anantapur']
[' Industry Name ', 'Bright Pack', ' District Name ', 'Guntur']
[' Industry Name ', 'lakshmi industries', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'sri priyadarsini polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'suresh plastic cover printing', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Indu Shoppee Bags', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'PRIMA PLASTICS LIMITED', ' District Name ', 'Prakasam']
[' Industry Name ', 'Metal Masters', ' District Name ', 'Krishna']
[' Industry Name ', 'KAPILAVAI  POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'DURGA BALAJI PLASTIC INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Gangadhar plastics pvt ltd', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Tejkamal Moulded Furniture Pvt Ltd', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'fantastic enterprises', ' District Name ', 'East Godavari']
[' Industry Name ', 'RAJA PLASTIC INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'KANAKA DURGA PLASTIC', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'siva traders', ' District Name ', 'West Godavari']
[' Industry Name ', 'HEMANTH TRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SUHANA TRADERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'LALITHAMBICA PLASTIC WASTE', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRILAXMI SWASTHIK ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'durga Balaji plastic industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI RATNA POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'srinivasa enterprise', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri hannukah plastic industries', ' District Name ', 'Krishna']
[' Industry Name ', 'S S L PAKINGS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'AMARAVATHI POLY PACK', ' District Name ', 'Krishna']
[' Industry Name ', 'SAROJA INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'GEETHA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'PAREKHPLAST INDIA LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'TPL plastech Limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Balaji Plastic Industry', ' District Name ', 'Guntur']
[' Industry Name ', 'JAYA KAMAKSHI POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VAIBHAVA DURGA PLASTICS EXPANSION', ' District Name ', 'Guntur']
[' Industry Name ', 'SLV Polypacks', ' District Name ', 'Chittoor']
[' Industry Name ', 'KOMMINENI POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI BRAMARAMBA ENTERPRISES', ' District Name ', 'Guntur']
[' Industry Name ', 'SUPER PLASTIC INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'GCH POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Neo sun Industries Limited', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'sri venkateswara plastics', ' District Name ', 'Chittoor']
[' Industry Name ', 'MARUTHI PLASTIC INDUSTRY', ' District Name ', 'Kurnool']
[' Industry Name ', 'raghavendra plastic industry', ' District Name ', 'Kurnool']
[' Industry Name ', 'SAILAJA PLASTICS', ' District Name ', 'Anantapur']
[' Industry Name ', 'RUMP INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'PAVANI INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'LIVAX PLASTICSY', ' District Name ', 'East Godavari']
[' Industry Name ', 'S V PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'RISHI INC', ' District Name ', 'Anantapur']
[' Industry Name ', 'LAKSHMI GANAPATHI PLASTICS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MANDAVA POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Vijaya Lakshmi Plastic Industry', ' District Name ', 'Krishna']
[' Industry Name ', 'Green World Polymers', ' District Name ', 'Chittoor']
[' Industry Name ', 'PUSHPA PLASTICS', ' District Name ', 'Kadapa']
[' Industry Name ', 'HKGN PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'LCR Plastics', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SAI GANESH ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Glory plastics', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI GARUDA INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'BRINDAVAN PLASTIC INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI RAM POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI AP PLASTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'S S PLASTIC INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Narayana Plastic Homes', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sai Balaji Plastic industries', ' District Name ', 'Kurnool']
[' Industry Name ', 'HoneyPlymars', ' District Name ', 'Kurnool']
[' Industry Name ', 'THARUNTEJ PLASTICS', ' District Name ', 'Anantapur']
[' Industry Name ', 'chandra plastic industries new', ' District Name ', 'Prakasam']
[' Industry Name ', 'VIMALA PLASTICS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'S V POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'LUCKY CAPS AND CLOSURES', ' District Name ', 'Guntur']
[' Industry Name ', 'Bismilla plastic works', ' District Name ', 'Chittoor']
[' Industry Name ', 'Bismilla plastic works', ' District Name ', 'Chittoor']
[' Industry Name ', 'HITECH CORPORATION LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MASHALLAH ENTERPRISES', ' District Name ', 'Chittoor']
[' Industry Name ', 'MS LAKSHMI PLASTIC WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'S V INDUSTRIES EXPANSION', ' District Name ', 'Chittoor']
[' Industry Name ', 'CLASSY KONTAINERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRIYAN PLOYMERS LLP', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SREE VYSHNAVI POLYMERS', ' District Name ', 'Prakasam']
[' Industry Name ', 'BFG INTERNATIONAL PRIVATE LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'EESWARI PLAASTIC INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'Samruddhi Industries Ltd', ' District Name ', 'Chittoor']
[' Industry Name ', 'Keerthana Enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'PEARL FILTER MANUFACTURERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'AARAV PVC PRODUCTS', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI SINDHU SAI FIBRE GLASS WORKS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NANO POLYMERS INDIA PVT LTD', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri Lakshmi Venkateswara Caps', ' District Name ', 'Kadapa']
[' Industry Name ', 'Harika polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'G PET', ' District Name ', 'Guntur']
[' Industry Name ', 'AJAY PET BOTTLES', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri Sai Durga Polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'Raj Pet Bottle industry', ' District Name ', 'Kurnool']
[' Industry Name ', 'RICHO INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'varun plastics', ' District Name ', 'Guntur']
[' Industry Name ', 'Aparna Enterprises', ' District Name ', 'East Godavari']
[' Industry Name ', 'VIJAY DURGA PET INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Dwaraka industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'MENNAKSHI POLYMERS AND TRADERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'S S ULTRATECH', ' District Name ', 'Krishna']
[' Industry Name ', 'SURYA POLY PET', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'LUCKY PET', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SURAJ INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'MAHALAKSHMI POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SAI PET JARS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'kashyap Green Feilds India Pvt ltd', ' District Name ', 'Anantapur']
[' Industry Name ', 'ISHWARYA INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Maa Sai Plastics', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA INDUSTRY', ' District Name ', 'Kadapa']
[' Industry Name ', 'JAYASRI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SHREEJEE PLAST', ' District Name ', 'Guntur']
[' Industry Name ', 'vaibhav polymerase', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATESWARA POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'HEMA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'HIND WIRES', ' District Name ', 'Prakasam']
[' Industry Name ', 'Venkata sai varnith and co', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'LIMRA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'V M K TRADERS', ' District Name ', 'Krishna']
[' Industry Name ', 'EVERGREEN POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Rama flow aerator tech pvt ltd', ' District Name ', 'West Godavari']
[' Industry Name ', 'Tarunasri  Plastic Industries', ' District Name ', 'Guntur']
[' Industry Name ', 'shree syam traders', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Glorious Toys', ' District Name ', 'West Godavari']
[' Industry Name ', 'Alankar polymerase', ' District Name ', 'Krishna']
[' Industry Name ', 'Ms Sree Dhanalakshmi Plastic Industries', ' District Name ', 'Kurnool']
[' Industry Name ', 'sree sree polytech', ' District Name ', 'Krishna']
[' Industry Name ', 'SWATI PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'sri rama Plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'GOWTHAMI PUMPS AND VALVES', ' District Name ', 'East Godavari']
[' Industry Name ', 'MM PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'VNR POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SAI RAAM PLAASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATESWARA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'ZENITH POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'sri ashwa vijay plastic industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'SATYA VENKATESWARA POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'CSK POLYMERS PVT LTD', ' District Name ', 'Krishna']
[' Industry Name ', 'PRAGHNA PRINT  PACK', ' District Name ', 'East Godavari']
[' Industry Name ', 'V V FISH NETS', ' District Name ', 'East Godavari']
[' Industry Name ', 'vikram polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'LOTUS POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SUNSHINE PLASTIC INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI KRISHNA INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SIVA BALAJI POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SR industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'simhadri polyfilmex', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'AMBIPACK INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sindhu Polymers', ' District Name ', 'Chittoor']
[' Industry Name ', 'A K S POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'VVRINDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'VIJAY INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'Jayaprabha polymers', ' District Name ', 'Prakasam']
[' Industry Name ', 'Swami pvc products', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI GANESH PLASTIC INDUSTRY', ' District Name ', 'Anantapur']
[' Industry Name ', 'VARASIDDI VINAYAKA INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'karthikeya polymers', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI DURGA AQUA', ' District Name ', 'West Godavari']
[' Industry Name ', 'Kareem battery works', ' District Name ', 'Guntur']
[' Industry Name ', 'TIRUMALA PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'Heritage polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'sri maruthi plastics', ' District Name ', 'Guntur']
[' Industry Name ', 'SADIQ INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'MN INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'sai plastic Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI SATYA SAI PLASTIC INDUSTRIES', ' District Name ', 'Srikakulam']
[' Industry Name ', 'HAFIYA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'venkata sai plastics', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri Vaibhav Venkateswara plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'KRUPASWAMY PLASTIC GRANULES', ' District Name ', 'Chittoor']
[' Industry Name ', 'Lakshmi Ganapathi Plastic', ' District Name ', 'Guntur']
[' Industry Name ', 'SIVA SAI PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'kanaka Durga plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'BHAVANA POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'MB SUPER TIRES', ' District Name ', 'Prakasam']
[' Industry Name ', 's s reclaimers', ' District Name ', 'Chittoor']
[' Industry Name ', 'KNaga Jyothi', ' District Name ', 'Prakasam']
[' Industry Name ', 'mahamad enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'sudhakar plastic industry', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI venkateswara traders', ' District Name ', 'West Godavari']
[' Industry Name ', 'BHAVANA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'NAGAMANI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'TRIVENI PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri srinivasa industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'usha plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'sri laxmi Narayana plastics', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Narasimha plastic industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'GUDIVADA POLY CRAFTS', ' District Name ', 'Guntur']
[' Industry Name ', 'SS POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'PP PLASTICS', ' District Name ', 'West Godavari']
[' Industry Name ', 'NANDHINI DEVI PLASTICS', ' District Name ', 'West Godavari']
[' Industry Name ', 'PVS PLASTICS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'HIMAMSU PLASTIC INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'Siddi Vinayaka Soudarsini Traders', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SHYAM PLASTIC INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'MARAM POLYMERS LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'GEETHA PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRT plastics', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Dwarakamai Industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI DURGA BHAVANI PLASTICS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI LAKSHMI GANESH POLYMERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'R P PLASTIC RECYCLING', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'M R TRADERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'BKMN AQUA', ' District Name ', 'Chittoor']
[' Industry Name ', 'V R TRADERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI VENKATA DURGA Enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Radhe kirshna plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'Naveen Sai Sree Industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'thameem enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'VCN PIPES', ' District Name ', 'Chittoor']
[' Industry Name ', 'RK PVC PIPES', ' District Name ', 'Anantapur']
[' Industry Name ', 'Rajeshwari plastics', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI RAVI PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'SHAIK GAFOOR ZESHAN LORRY BODY BUILDING WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'KOVVURI GRANULES', ' District Name ', 'East Godavari']
[' Industry Name ', 'PP industries', ' District Name ', 'Krishna']
[' Industry Name ', 'AMBICA PLASTICS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'PURVI INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Vijaya Durga Plastic Recycling', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI LAKSHMI POLYMERS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Kamal plastic industry', ' District Name ', 'Krishna']
[' Industry Name ', 'LAKSHMI VENKATESHWARA PLASTICS', ' District Name ', 'Anantapur']
[' Industry Name ', 'VIJAYA SAI PLASTICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'V R ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MGL PLASTIC WORKS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Subdareswara Slate works', ' District Name ', 'Prakasam']
[' Industry Name ', 'Vasudeva agencies', ' District Name ', 'East Godavari']
[' Industry Name ', 'HEMA NAGA LAKSHMI INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sir venkateswara plastic industry', ' District Name ', 'Krishna']
[' Industry Name ', 'Evergreen polymers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Ms United Polymers', ' District Name ', 'Prakasam']
[' Industry Name ', 'venkata Sai plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'Viswamitra Slate works', ' District Name ', 'Prakasam']
[' Industry Name ', 'sun plastic works', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'JAYA  BHAVANI PLASTICS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Venkateswara plastics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SAI RAM RUBBER STAMPS', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri lakshmi Ganapathi plastic industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Karani Plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'Prasanna Plastic Recycling Unit', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri Bhavani Plastic Industry', ' District Name ', 'Anantapur']
[' Industry Name ', 'siva Parvathi plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'USMAN GANI INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'HR POLYMERS', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sri Sai Krishna plastics New firm', ' District Name ', 'Kadapa']
[' Industry Name ', 'SR PLASTIC INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATESWARA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'srilatha enterprises', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SIDDESH PLASTIC PROCESSING', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Venkatesan Plastic Washing and  Scraps', ' District Name ', 'Chittoor']
[' Industry Name ', 'Shivani industries', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'KGN PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'USHA PLATIC THREADS AND ACCESSORIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI VENKATA RAGHAVENDRA  INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'SANKAR PLASTICS INDS', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI LALITHA PLASTICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'LAKSHMI MEGHANA INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'sambasiva plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'sri lakshmi rope industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'N SATYANARAYANA', ' District Name ', 'East Godavari']
[' Industry Name ', 'veda polyproducts private limited', ' District Name ', 'Krishna']
[' Industry Name ', 'NIRMAL PLASTICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'S R M STRAPPINGS', ' District Name ', 'Chittoor']
[' Industry Name ', 'KOHINOOR PLASTICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SHREE  GOVARDHAN PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'water servicing station', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI sai Anjana plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Siva Durga plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'Vasavi Gold Covering Works', ' District Name ', 'Krishna']
[' Industry Name ', 'gk engineer work', ' District Name ', 'Krishna']
[' Industry Name ', 'MAA PET', ' District Name ', 'Guntur']
[' Industry Name ', 'ATLURI ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'Pasteur scientific zone', ' District Name ', 'Kurnool']
[' Industry Name ', 'SAKETH PLASTIC INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'maruthi enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'kaveri polymers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Devi Prewat Private Ltd', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Radiant Engineering Industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'raja plastics', ' District Name ', 'Kadapa']
[' Industry Name ', 'Lakshmi Narasimha Polimers', ' District Name ', 'Chittoor']
[' Industry Name ', 'BALAJI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'SHEBIX PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Aadhaar water tanks', ' District Name ', 'Kadapa']
[' Industry Name ', 'NITHYASRI PLASTICS', ' District Name ', 'Guntur']
[' Industry Name ', 'srinivasa plastic industries', ' District Name ', 'Kurnool']
[' Industry Name ', 'NS venkata rao', ' District Name ', 'Krishna']
[' Industry Name ', 'KARTHIK MOULDS AND DIES', ' District Name ', 'Krishna']
[' Industry Name ', 'MIKROFLO FILTERS PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'veerendra plastics', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI VENKATA RAMA PLASTIC INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'noorjhan plastic industry', ' District Name ', 'Chittoor']
[' Industry Name ', 'JAI SIVASANTOSHE POLY PACK', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI AMBIKA PLASTIC WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'SREE GAYATHRI PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'V Plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'VISAKHA REINFORCED PLASTICS AND LININGS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI KARTIKEYA POLY PACK INDUSTRY', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Lakshmi Narayanana polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'RAMADUTHA POLY PACKS', ' District Name ', 'Guntur']
[' Industry Name ', 'Safety Polymers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRK POLYMERS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'HIMALAYA PROJECTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'VVFLEX PACK PRIVATE LIMITED', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI PAVITRA PACK PVT LTD', ' District Name ', 'Krishna']
[' Industry Name ', 'GLOBAL INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'STAR ENTERPRISES', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri matha poly pack industry', ' District Name ', 'Srikakulam']
[' Industry Name ', 'BHARATHI POLYMERS INDIA PRIVATE LIMITED', ' District Name ', 'Kadapa']
[' Industry Name ', 'tirumala industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'S S poly films', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VENKATA SAI LAMINATIONS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Avinash Plastics', ' District Name ', 'Guntur']
[' Industry Name ', 'A R Enterprises', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI RAGHAVENDRA PLASTIC INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'VIKAS PLASTICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'MOKSHARAMA POLY INDUSTRY', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Ameya Polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'MANI DAS INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SHREE POLY FILMS PVT LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Vijaya Durga polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'Vijaya Bharathi industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'Gopikrishna plastics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SR POLYTECH', ' District Name ', 'Prakasam']
[' Industry Name ', 'BALAJI PLASTIC INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'GLOBAL SUNSHINE PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'JAYA SAI POLYMERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'GRACE MOULDING INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'NAVYASRI RUBBER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'R K polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'SUCHAR INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI APPAJI ENTERPRISES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Vinayaka polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'SALIA POLYMERS PRIVATE LIMITED', ' District Name ', 'West Godavari']
[' Industry Name ', 'Krishna Industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'Satya sai polymers', ' District Name ', 'Anantapur']
[' Industry Name ', 'MVR POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'HDPEOVEN BAGSJUTE BAGS MANUFACTURE', ' District Name ', 'Guntur']
[' Industry Name ', 'SAI DURGA POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Varalakshmi polymers', ' District Name ', 'West Godavari']
[' Industry Name ', 'KAKI RAMU GODOWN', ' District Name ', 'East Godavari']
[' Industry Name ', 'Vamsi Print Pack', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Naidu pipe industry', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri Vasavi polymers Pvt limited', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Surya polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI VIDYA POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Veera bhadra polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'NAGA VENKATA SAI POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'sai Sri polymers', ' District Name ', 'West Godavari']
[' Industry Name ', 'virat polymers', ' District Name ', 'West Godavari']
[' Industry Name ', 'Vijaya sai polymers', ' District Name ', 'East Godavari']
[' Industry Name ', 'SIVA SAI PRINTERS AND PLASTIC WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'balaji polyfilmex', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'GANESH SAI POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Lakshmi Polymers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SIMHADRI ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'PP POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SUPREME INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'Santhosh Polymers', ' District Name ', 'Kurnool']
[' Industry Name ', 'BHAASKARA POLY STRAP', ' District Name ', 'Chittoor']
[' Industry Name ', 'OM MURUGAN POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'VIGNESH POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Divija Polymers', ' District Name ', 'Kadapa']
[' Industry Name ', 'Galaxy industries', ' District Name ', 'Krishna']
[' Industry Name ', 'SRESHTA PACKAGE', ' District Name ', 'Krishna']
[' Industry Name ', 'JK POLYPACKS', ' District Name ', 'West Godavari']
[' Industry Name ', 'M M Plastics', ' District Name ', 'East Godavari']
[' Industry Name ', 'Lakshmi Ganesh Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'AECO PRODUCTS', ' District Name ', 'Guntur']
[' Industry Name ', 'Sathemmathalli plastic Industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'pavan plastics', ' District Name ', 'Anantapur']
[' Industry Name ', 'Bhargavee Sri Sai Polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'sidhartha plastics', ' District Name ', 'East Godavari']
[' Industry Name ', 'RK Enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'SINDHU PLASTIC INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'PRIYA POLY PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'CHITTY BOTTLES INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'SREE PEARL INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SHYAM INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VIJAYA POLY GRAPHICS', ' District Name ', 'East Godavari']
[' Industry Name ', 'BHUMI PLASTIC PIPES PRIVATE LIMITED', ' District Name ', 'Prakasam']
[' Industry Name ', 'GANESH FOOD PACKAGES', ' District Name ', 'Anantapur']
[' Industry Name ', 'SUSHEEL PLASTIC PVT LTD', ' District Name ', 'Kurnool']
[' Industry Name ', 'LIMAR TRADERS', ' District Name ', 'Kurnool']
[' Industry Name ', 'AL SAFAA PLASTICS INDUSTRIES', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sree Purvi Polymers', ' District Name ', 'Kadapa']
[' Industry Name ', 'SaiRam Poly Bags', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI SAI VENKAT POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'MANI POLY PACKS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Siva leela polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'JK POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI maha Lakshmi bag works', ' District Name ', 'Krishna']
[' Industry Name ', 'SURYANARAYANA ENTERPRISES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SPADS POLYPLAST PRODUCTS PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'Pragati print pack unit2', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Pragathi print pack unit 3', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SINDHU SRI INDUSTRY', ' District Name ', 'Kurnool']
[' Industry Name ', 'pragathi print pack', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'LUNAR POLY PACKS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'lucky plastics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NAVEEN SAI PLASTICS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'K K Enterprises', ' District Name ', 'Anantapur']
[' Industry Name ', 'UNITED PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'i8SAPTHAGIRI TECHNO POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'adil traders', ' District Name ', 'Guntur']
[' Industry Name ', 'Lakshmi venkateswara polymers', ' District Name ', 'West Godavari']
[' Industry Name ', 'sreeja packing industries', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRINIVASA POLYMERS', ' District Name ', 'Prakasam']
[' Industry Name ', 'sanjana industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'N R PLASTICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Lakshmi Plastics', ' District Name ', 'West Godavari']
[' Industry Name ', 'KRISHNA SR PACKS', ' District Name ', 'West Godavari']
[' Industry Name ', 'raghuveer enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'sree babaji polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SHIVASAIS PLASTICS', ' District Name ', 'West Godavari']
[' Industry Name ', 'vijaya lakshmi krishna polymers', ' District Name ', 'West Godavari']
[' Industry Name ', 'Venkateswara Plastics', ' District Name ', 'West Godavari']
[' Industry Name ', 'Hemal Sai Package', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Vigneswara Poly Flex Industry', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI LAKSHMI POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'C R IMITATION JEWELLERY  PACKING WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'VIJETHA POLY PACKS', ' District Name ', 'Guntur']
[' Industry Name ', 'P S NOOKA RAJU', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI GURU SAIDATTA POLYMERS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Swetha Vyshnavi Pack Line', ' District Name ', 'Anantapur']
[' Industry Name ', 'PERFECT POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'EASYWAY INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Pavithra Foam Products', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Satya Sai Industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VENKATESWARA UPVC', ' District Name ', 'Krishna']
[' Industry Name ', 'VSD Plastics', ' District Name ', 'Krishna']
[' Industry Name ', 'mahaveer industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VL Packings', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'balaji industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Satya Surya Industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SAI SHREYA INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Mahalakshmi Polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri Ganga Industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'suma anusha packages', ' District Name ', 'Guntur']
[' Industry Name ', 'varasiddhi vinayaka plastics', ' District Name ', 'Chittoor']
[' Industry Name ', 'GS PLASTIC RECYCLING', ' District Name ', 'Kurnool']
[' Industry Name ', 'Om Threeshakti enterprises', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Venkateswara Polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'Phoenix Industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'R R POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'RAKESH PLASTICS INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'sri sai Keerthana pvc doors', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ROYAL PLASTIC', ' District Name ', 'Chittoor']
[' Industry Name ', 'ROYAL PLASTIC UNIT 2', ' District Name ', 'Chittoor']
[' Industry Name ', 'SLV PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SAI POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SREE SAI SEKHAR PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Rushika Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'GR POLYPLY', ' District Name ', 'Kurnool']
[' Industry Name ', 'MERRITO POLYMERS INDIA PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri venkata Sai polymers', ' District Name ', 'Kadapa']
[' Industry Name ', 'TULASAMMA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'RATNA PVC PIPES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Chemfab Alkalis Limited', ' District Name ', 'Chittoor']
[' Industry Name ', 'AMARAVATHI PVC PIPES', ' District Name ', 'Guntur']
[' Industry Name ', 'Siva polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'SAI KRISHNA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VENKATESWARA PIPES', ' District Name ', 'Guntur']
[' Industry Name ', 'Lakshmi pipe industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'Chalapathi PVC pipes', ' District Name ', 'East Godavari']
[' Industry Name ', 'ms sun rises industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SHAKTHI INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRINIVASA PIPE INDUSTRIES', ' District Name ', 'Kadapa']
[' Industry Name ', 'Lakshmi polymers', ' District Name ', 'Prakasam']
[' Industry Name ', 'MOKSHA PVC PIPES INDUSTRY', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', '2 STAR PIPE INDUSTRIES', ' District Name ', 'Kadapa']
[' Industry Name ', 'KRISHNA PVC PIPES', ' District Name ', 'Kadapa']
[' Industry Name ', 'BHARATH PLASTICS INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SWATHISRI PLASTIC INDUSTRIES INDIA PVT LTD', ' District Name ', 'Prakasam']
[' Industry Name ', 'Balaji Suraksha PVC Pipes Industries', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Ravee PVC Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'LAKSHMI    INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri polymers', ' District Name ', 'Chittoor']
[' Industry Name ', 'Devi PVC Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'VISAKHA POLYPIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI KRISHNA PVC PIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI AMARAVATHI ENTERPRISES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Venugopal Pvc Pipes', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri Durga Plastics', ' District Name ', 'Kurnool']
[' Industry Name ', 'KAILAASNATH POLY FLEX', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI DURGA PVC PIPE', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'KARTHIKEYA PVC PIPES', ' District Name ', 'Krishna']
[' Industry Name ', 'VIJAYALAKSHMI PLASTICS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI KRISHNA PIPES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI TIRUPATAMMA INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Chandra pipes', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI LAKSHMI DURGA PVC PIPES', ' District Name ', 'Kadapa']
[' Industry Name ', 'NARASIMHA PVC INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'RAVITEJA PVC PIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MH POLYMERS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Ramya pvc manufactures', ' District Name ', 'Krishna']
[' Industry Name ', 'MURTHY INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ESWARA PIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'sanjeevi pvc pipestar', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI BALAJI ASSOCIATES AND LOGISTICS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Uday pipes', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI RAM INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SREENIVASA RECYCLING PVC PIPES', ' District Name ', 'Anantapur']
[' Industry Name ', 'LEO PVC pipes industry', ' District Name ', 'Kadapa']
[' Industry Name ', 'JAYA VENKATA SRINIVASA POLYMERS', ' District Name ', 'Guntur']
[' Industry Name ', 'KARTIKEYA GEETAMS INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI SIDDHARTHA PVC PIPES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'METRO POLYMERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Venkat Sai Pipes', ' District Name ', 'Anantapur']
[' Industry Name ', 'MAHANANDI PVC PIPES', ' District Name ', 'Guntur']
[' Industry Name ', 'vani pvc products', ' District Name ', 'Prakasam']
[' Industry Name ', 'Venkataramana pipes', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Mahaveera Polymers', ' District Name ', 'Guntur']
[' Industry Name ', 'Sekhar Irrigation Systems', ' District Name ', 'Anantapur']
[' Industry Name ', 'LOHITHA PVC INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'Aadhaar polymers', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI SIMHAPURI INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'MAHESH EXTRUSIONS LIMITED', ' District Name ', 'Anantapur']
[' Industry Name ', 'SANTHISREE PIPE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Vijaya plastic industries', ' District Name ', 'Kadapa']
[' Industry Name ', 'PONNORE ENTERPRISE LLP', ' District Name ', 'Chittoor']
[' Industry Name ', 'GLOBAL RAINBOW PIPES', ' District Name ', 'Chittoor']
[' Industry Name ', 'MAHALAKSHMI PIPE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'PRASAMSA P V C PIPES INDUSTRIES', ' District Name ', 'Kadapa']
[' Industry Name ', 'AARAV PVC INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'hari PVC industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'SHIVA GANGA PVC PIPES', ' District Name ', 'Kadapa']
[' Industry Name ', 'VIRAT PVC INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Amrutha Creations', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI SRINIVASA UNIVERSAL ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'BHARATH PIPES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'PS Devarajan', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SOWMITRI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'NIMMALURI VENKATA SUBBA RAO', ' District Name ', 'Krishna']
[' Industry Name ', 'RAVI KUMAR INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sriram cottage industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI GANGA PVC PIPES AND PAPER PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'ARJUN IRRIGATION', ' District Name ', 'Chittoor']
[' Industry Name ', 'M N ENTERPRISES', ' District Name ', 'Guntur']
[' Industry Name ', 'Balaji Beltings', ' District Name ', 'Prakasam']
[' Industry Name ', 'poojitha pvc industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRUPVC DOORS AND WINDOWS', ' District Name ', 'Krishna']
[' Industry Name ', 'itechPVC upvc designers', ' District Name ', 'Krishna']
[' Industry Name ', 'RLB PVC PROFILES', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI SIVA GLASS EPVC WINDOWS', ' District Name ', 'Guntur']
[' Industry Name ', 'Lakshmi industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI ASSOCIATES UPVC WINDOWS AND DOORS', ' District Name ', 'Krishna']
[' Industry Name ', 'sri mallesh upvc tech industries', ' District Name ', 'Krishna']
[' Industry Name ', 'HI WOOD PLASTO TECH', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'HITECH INDIA', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'KREATIVE ENGINEERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SQUAR UPVC DOORS AND WINDOWS', ' District Name ', 'East Godavari']
[' Industry Name ', 'LEONARD INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NANDI EXTRUSIONS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI SAI INDUSTRIES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'MS  PIONEER  RENEWABLES', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sri Shiridi sai industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'OM SAI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'ALPHA CORPORATION', ' District Name ', 'Chittoor']
[' Industry Name ', 'Nagalakshmi enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'SIRAJ BANO TRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'ARUNA RETRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Divya industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Mahaboob Basha Plastic Industry', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'POORNODAYA TRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'M P polymers', ' District Name ', 'Krishna']
[' Industry Name ', 'kanakadurga plastics and genera', ' District Name ', 'Krishna']
[' Industry Name ', 'Swastik Nets Company', ' District Name ', 'Chittoor']
[' Industry Name ', 'mahalakshmi plastics', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri Lakshmi Polymers', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI ASUKA PLASTIC INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SALEEM TRADERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'MDS PACKAGING SYSTEMS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri lakshmi industrial enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Hussain Basha  Industry', ' District Name ', 'Krishna']
[' Industry Name ', 'sree hanuman plastics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SVS PLASTIC PRODUCTS', ' District Name ', 'Guntur']
[' Industry Name ', 'LASYA ENTERPRISES', ' District Name ', 'West Godavari']
[' Industry Name ', 'umapati industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'sai krishna plastics', ' District Name ', 'Chittoor']
[' Industry Name ', 'RAMAKRISHNA lubricants', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Ms Arc India petroleum Pvt limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ZEN LUBS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Kumar Tyre works', ' District Name ', 'Krishna']
[' Industry Name ', 'MS VV INDUSTRIES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SR PLASTIC INDUSTRY BRANCH 1', ' District Name ', 'Krishna']
[' Industry Name ', 'Klean poly tech Pvt ltd', ' District Name ', 'Chittoor']
[' Industry Name ', 'Faheem Tyre Retrders', ' District Name ', 'Krishna']
[' Industry Name ', 'RATNAM INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'RAVI RUBBER AND PVC PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'MS ELGI Rubber limited', ' District Name ', 'Krishna']
[' Industry Name ', 'Krishna Bharathi Rubber Moulding industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'ajay rubber and engineering works', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sree Srinivasa Rubber and tyre works', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Venkateshwara Rubber products', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'INDIAN RUBBER INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SREE BALAJI POLYY RUBBER INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI BHAVANI FOOTWEAR INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'ANIL FOOT PRINTS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SAI RAM INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'DLS INDUSTRIS', ' District Name ', 'Anantapur']
[' Industry Name ', 'VEENA RUBBER INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI DURGA RUBBER INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'KONDAPALLI ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SSD POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'EAST COAST RUBBER PRODUCTS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NARAYANA REDDY GUNNIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'RAGHAVENDRA RUBBER PRODUCTS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'sk Abdulla tyres', ' District Name ', 'Guntur']
[' Industry Name ', 'Roja Industries', ' District Name ', 'Guntur', ' Sector Name ', 'LEAF PLATES', ' Activity Name ', 'LEAF PLATES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivasa veerabhara flour mille', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GREEN PANEL INDUSTRIES LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'MDF BOARDS', ' Activity Name ', 'Manufacturing of MDF boards and particle boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '286']
[' Industry Name ', 'Mahaveera honey industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bee Keeping Honey Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SHIRDIBABA CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Mutyalamma thalli Plastic Covers', ' District Name ', 'Guntur']
[' Industry Name ', 'Prabhu Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Ferro Alloys', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Akula Narasimhappa', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pondora srinivasulu gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Budamgunta Kishore Achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri said jewellery works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'n Chandra SEKHAR gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V suryanarayana flour and oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Grinding of spices & dal powders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahimatururu Krishna goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PRASANNANJANEYA RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA DURGA FLOOR AND OIL MILL', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil mill ghani & extraction ( no hydrogenation / refining)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'p VASU gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'm venkatesh', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'k sharat Kumar gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p Hari achari', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'p jankiram achari gold smith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'v subramanya machari goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p subbramanayam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c subhaiya achari goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p janardhan achari Goldsmith', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'METALLIC', ' Activity Name ', 'Gold & Silver Jewellery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE RAGHU GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'trinadh disposal motors', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aashirwad chilli powder mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CHILLI POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagamani Rice Flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hindustan Coca Cola Beverages Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Non Alcoholic Beverages', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '193']
[' Industry Name ', 'JAYA SAI POLY CORPORATION', ' District Name ', 'Guntur']
[' Industry Name ', 'SR GOLD COVERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IMITATION JEWELLERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAZA ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vinayaka mineral aterplant', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree srinivasa rice mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Appayamma industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'THANISH INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri sainadh tinkering  and welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'METALLIC', ' Activity Name ', 'MANUFACTURE OF IRON AND STEEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASTSA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hasini traders', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dairy farm', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Milk processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMIRANI RICE MILL', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'sri sumitra poly printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'Thotam setty Venkata subba rathnamma dhall mill', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'ALL PULSES AND DHALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AA ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'GANESH INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Food Items', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHARAT PVC INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri Laxmi narasimha food corporation', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHANDRASCAKE N CREAM', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Hussain engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'CASHEW KERNALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '22']
[' Industry Name ', 'Lakshmi Ganapathi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sharada bakery', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'srikrishna cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'MS JAI BALAJI MODERN RICE MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'SATYAS COMPOSITES', ' District Name ', 'Krishna']
[' Industry Name ', 'GANGOTHRI INDUSTRIES EXPANSION', ' District Name ', 'Chittoor']
[' Industry Name ', 'T K INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'DHARANEE PIPES', ' District Name ', 'Anantapur']
[' Industry Name ', 'RS RUBBER INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'JAIPUR SWEET STALL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Bakery / Confectionery / Sweets production', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI MADHU SRI TRADING CO', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Corn Flour & Wheat Flour', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '200']
[' Industry Name ', 'SRIMAN CASHEW INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew nut processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Shankra Reddy Flour Mill', ' District Name ', 'Anantapur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gowri sankar cashew factory', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VEERAMANI TRADERS', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Cashew Nut processing with boiling process', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinivasa dall mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Dal mills', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRU AMBIKA SWEETS AND BAKERY', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'S S RICE TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'PADDY PROCCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'AADITHYA PACKINGS', ' District Name ', 'Krishna']
[' Industry Name ', 'salam mini flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sambasiva flourmill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'vasanta plastics', ' District Name ', 'East Godavari']
[' Industry Name ', 'sri lalitha ammavaru floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya visakha milk producers company limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MILK Cooling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Mahalakshmi flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA SHANKAR FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Flour mills (dry process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anas cooling mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MINERAL WATER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moosa ice industry', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Ice Blocks making', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata srinivasa oil pvt ltd', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MAIZE GERM OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA RAO FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'maize starch and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'balamurari tradars', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K V SATYANARAYANA MURTHY', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MANUFACTURING OF EDIBLE OILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SINDHURI AGRO TECH', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'MICRO NUTRIENTS FOR AGRICULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sunrise Foods and Beverages', ' District Name ', 'Chittoor', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'manufacturing of Fruit juices', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Surya Plastic Industries', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sri Venkateswara Flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Venkata Ramana Rice and Oil mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Raghavendra rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sundaram rice mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGA RICEMILL', ' District Name ', 'Krishna', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Modern Rice Milling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi ganapathi oil mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Oil Extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pamulapati industries', ' District Name ', 'Guntur', ' Sector Name ', 'Food and Agro Products', ' Activity Name ', 'Packaged drinking water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri satya saibaba rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Food and Agro Products']
[' Industry Name ', 'Sri Lakshmi Venkateswara Industry', ' District Name ', 'Kadapa']
[' Industry Name ', 'SAI RAM PLAST', ' District Name ', 'Krishna']
[' Industry Name ', 'VIBHAAS POLYMERS PRIVATE LIMITED', ' District Name ', 'West Godavari']
[' Industry Name ', 'Economy Packing Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'VENGAMAMBA INDUSTRIES', ' District Name ', 'Prakasam']
[' Industry Name ', 'kochery traders', ' District Name ', 'Guntur']
[' Industry Name ', 'STAR REBUTTON', ' District Name ', 'Guntur']
[' Industry Name ', 'KALANGI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'HINDUSTHAN TRADERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SK Karem Tyre Retreading works', ' District Name ', 'Krishna']
[' Industry Name ', 'Karimulla tyre repair', ' District Name ', 'Krishna']
[' Industry Name ', 'Star tyre retrading works', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri poorna rubbers', ' District Name ', 'Krishna']
[' Industry Name ', 'Yaseen Tyre Retrading', ' District Name ', 'Krishna']
[' Industry Name ', 'LAKSHMI VU CASING WORKS', ' District Name ', 'Prakasam']
[' Industry Name ', 'APOLLO TYRES LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'siva volcunising works', ' District Name ', 'Prakasam']
[' Industry Name ', 'KHAJA TYRES', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri thirumala Srinivasa retraders', ' District Name ', 'Prakasam']
[' Industry Name ', 'imran tyre trading works', ' District Name ', 'Krishna']
[' Industry Name ', 'Jaffar tyre works', ' District Name ', 'Krishna']
[' Industry Name ', 'Sunrise Tyre Tube India Private Limited', ' District Name ', 'Anantapur']
[' Industry Name ', 'Liyakhat Ali workshop', ' District Name ', 'Krishna']
[' Industry Name ', 'VENKATASAI SHILPASHALA', ' District Name ', 'Srikakulam']
[' Industry Name ', 'naga savitri retrading works', ' District Name ', 'Krishna']
[' Industry Name ', 'Sai Tyre Retraders', ' District Name ', 'Krishna']
[' Industry Name ', 'Royal Traders', ' District Name ', 'Kadapa']
[' Industry Name ', 'ALIF TYRE WORKS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Man tyres', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VIJAYA DURGA TYRE WORKS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'vulcanising', ' District Name ', 'Anantapur']
[' Industry Name ', 'manufacturing', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'A K R ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'APPLE POLYMERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SAKTHI PRIYA RUBBER PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'vishnu rebuilders', ' District Name ', 'Prakasam']
[' Industry Name ', 'essve treads', ' District Name ', 'Chittoor']
[' Industry Name ', 'ARROWRUBBERFACTORY', ' District Name ', 'Chittoor']
[' Industry Name ', 'PANENDRA RUBBER FATORY', ' District Name ', 'Chittoor']
[' Industry Name ', 'ASHOKA RUBBER STAMP WORKS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI SAKTHI RUBBER STAMPS WORKS GRANITE ENGRAVING AND PRINTING', ' District Name ', 'Chittoor']
[' Industry Name ', 'ROYAL RUBBER INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'VIJAYALAKSHMI HEALTH AND SURGICALS PVT LTD', ' District Name ', 'Prakasam']
[' Industry Name ', 'SDM glass and rubber industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Siri resins industries', ' District Name ', 'Krishna']
[' Industry Name ', 'THAMMA VISWANADHAM  C0', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'WYNN CHEM ADHESIVES', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Sai Auto Mechanic Works', ' District Name ', 'Guntur']
[' Industry Name ', 'KK RUBBER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'VISIONERS ASSOCIATES', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri Raja Rajeswari industries', ' District Name ', 'Krishna']
[' Industry Name ', 'parameshwar tarpaulin industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'Padmaja Tarpaulin Company', ' District Name ', 'East Godavari']
[' Industry Name ', 'Hunss polymers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ARNAV POLYMERS PVT LTD', ' District Name ', 'West Godavari']
[' Industry Name ', 'LAKSHMI SAMANVITHA POLYMERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'VENKATESWARA LOVAPRASAD EXPORTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SAI PACKAGING', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'COASTAL POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'SREE BALAJI EPS PRODUCTS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'DOLPHIN POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Progressive Project', ' District Name ', 'Krishna']
[' Industry Name ', 'Nissy traders', ' District Name ', 'Krishna']
[' Industry Name ', 'JRN Tyre Retrading works', ' District Name ', 'Krishna']
[' Industry Name ', 'K R TIRES', ' District Name ', 'Prakasam']
[' Industry Name ', 'MARUTHI TYRE WORKS', ' District Name ', 'Guntur']
[' Industry Name ', 'Vigneswara Renewables Private Limited', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'QUALITY TIRES', ' District Name ', 'Guntur']
[' Industry Name ', 'tyre vulcanising', ' District Name ', 'Guntur']
[' Industry Name ', 'SV tyre work', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Kishava tyres retrading works', ' District Name ', 'Kadapa']
[' Industry Name ', 'SIVA SAI TYRE RETREADING UNIT', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI BALAJI TYRES AND TYRE WORKS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SJN TYRE WORKS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'KGN TYRES', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI PADMA SAI VEERA BRAMHA RETREADS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Vantech Pretreads', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'PSB INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sivaram Tyre Retreads', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sri Kerala Retreaders and polymers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SAI SAHITYA POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Bhargavi retraders', ' District Name ', 'Krishna']
[' Industry Name ', 'SLV TYRES', ' District Name ', 'Anantapur']
[' Industry Name ', 'priya tyre retaders', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI SAMPATH VINAYAKA TYRES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'HM TYRES', ' District Name ', 'Kadapa']
[' Industry Name ', 'B S N Tyre Retreaders', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ELGI Rubber Company Limited', ' District Name ', 'Anantapur']
[' Industry Name ', 'Lakshmi Ganapathi Tyre works', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ANDHRA TYRE WORKS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SMART WINDOWS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'GREEN VIEW UPVC DOORS AND WINDOWS PRIVATE LIMITED', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sairam UPVC Doors And Windows', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sahasra Interior Solutions Pvt Ltd', ' District Name ', 'West Godavari']
[' Industry Name ', 'Amaravathi poly plast', ' District Name ', 'Guntur']
[' Industry Name ', 'Aakruthi upvc windows and doors', ' District Name ', 'Krishna']
[' Industry Name ', 'ALANKAR UPVC DOORS AND WINDOWS', ' District Name ', 'Krishna']
[' Industry Name ', 'KARUNA UPVC INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'eco-care building innovations pvt ltd', ' District Name ', 'Krishna']
[' Industry Name ', 'QUBIC INFRA', ' District Name ', 'Guntur']
[' Industry Name ', 'Greentech upvc industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'future windows', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'GOWTHAMI UPVC TECHNOLOGIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'GANAPATHI TRADING CORPORATION', ' District Name ', 'Chittoor']
[' Industry Name ', 'MM POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'STAR PLASTIC INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'PLASTONNA COMPANY PVT LMTD', ' District Name ', 'Chittoor']
[' Industry Name ', 'S R S INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI SIVA SAI PIPE INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'kanta enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SAI SOWJANYA PLASTIC INDUSTRY', ' District Name ', 'Kurnool']
[' Industry Name ', 'Rajesh Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'SINTAX TANK MANUFACTURING', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SREE NANDISWARA POLYMERS INDIA PRIVATE LIMITED', ' District Name ', 'Kurnool']
[' Industry Name ', 'AJ DIGITAL NETWORK', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hanuman xerox', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA SANKHAR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VENKY STICKERING', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DIGITAL EXPRESS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'THE GUDIVADA CENTRAL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Cheera Signs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ramsree Ads', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri ragavendra digital', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mansawini placements', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA FLEX PRINTINGS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ADVERTISING AGENCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sneha forms Pvt limited', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ANIMAL HUSBANDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Srinivasa Reddy Poultry Farm', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ANIMAL HUSBANDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MIRIYALA VARALAKSHMI BOILER FORMS', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ANIMAL HUSBANDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VENKATA SIVA LAKSHMI SRINIVASA NURSERY', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ANIMAL HUSBANDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Devi Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ANIMAL HUSBANDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Balaji Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ARCHITECTURAL AND CIVIL ENGINEERING CONSULTANCY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'suneetha auto reboring works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah hightech traders', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASIM AUTO MECH WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Noor water servicing', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khadarmuhiddin Water servicing Point', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SATYAPAL MILL STORES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SKsubhani puncher shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rapid Car Wash', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M PYDICHITTI WORKSHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chan auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'devi enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kaja Water Servicing Center', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Shaik bajid', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman MECHANICAL works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganapathi auto care', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Venkata Maruti mechanical works and servicing', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pyramid Tyres', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M L S vali', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri nidhi industries', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LAkshmi Ganesh AutoMobile Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal servicing centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Manjunatha service point', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Rama mechanic works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'D venkata Ramana', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sankar mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mahammad ghouse water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri Raghavendra automobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Masha Allah bike Mechanic workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kandru sambamurthy painting works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILAA MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri SeetaRama engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Munna Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata ramana auto service', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Tthulasi auto center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRB bedding', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaikshavali garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R R ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOUTH INDIA AIR BREAK SYSTEMS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Venkateswara Bike mechanic works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NANDHINI FABRICATION', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AR engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sreenivasa Two wheeler garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ayesha Bike works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AL SAMI AUTO ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI SRINIVASA MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AR air breake system', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahaboob Basha Mechanic workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABDUL FOUNDRY', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AZEEM PIPE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '26']
[' Industry Name ', 'M D YASEEN RADIATORS WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGALAKSHMI SRINIVASA BREAK AND CLUCH SERVICEING', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI NAGA VENKATA VIJAYALAKSHMI MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA AGRO SERVICING CENTER', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHAVANI SRI AUTO ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hussain Basha enginnering works', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAVA NARASIMHA AUTO GARAGE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Peddiraju mechanic workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah battery charging', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Subramanian black machine workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGN Gas Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Boina Venkateswarulu', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'NEETHU ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khaleem shock absorbers and recondition works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA ELECTRICION', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RASHEKAR ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NOOR ELECTRICIAN', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DISPOSAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA SPRING PLATE WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ALNAZEER ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A10 Radial patch works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijay puncher shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BAKSHU BAIG RADIATOR WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LATH ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya sai hand drilling works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'royal Enfield service centre', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A M G Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Khan Servicing Station', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'new saradhi mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara water servicing', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'DADI HONDA SHOW ROOM', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'ALMADINA CAR MECHANIC', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maqbool Auto Electricals', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'harsha vardhan auto mobile works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAM CAR WASH', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI ANNAPURNA WAYING BRIDGE AND WATER SERVICING', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Ganapati Bike point', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVEED MECHANICAL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kiran water servicing center', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri subramanyeswara engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'uma maheswara engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahalaxmi auto centre', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARUN AIR BRAKE SYSTEMS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shri Siva Shakthi Bike Garage', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Devi Bike works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai charan car wash', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai  laxmi bike works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MNC AUTOMOBILES', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SR enterprises', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BR CAR CARE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh Garrage', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Karuna Jyothi bike repairs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Moulali Auto Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DJ auto works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KANAKADURGA BIKE MECHANIC', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rafiq Gas Welding', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SAI BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'glory car servicing station', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya durga foam wash', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA TYRE ZONE', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI MANIKANTA AUTOMOTIVE', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Viswarupa automotives private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Suresh two wheeler mechanic shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Varun Motors', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Lakshmi Ganapathi motors', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATA SATYANARAYANA ENGINEEING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai ram automobile', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RIJWAN BIKE MECHANICS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S K AUTOMOBILE', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Manikanta Water Service and Bike Repare', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'UMAR AUTOGARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJA MOTORS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'JSR MOTORS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Noor Elahi Servicing Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramana tyre Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKAT CHAKRADEV HYDRAULICS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MGB Mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '40']
[' Industry Name ', 'surya Teja welding work', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Chandra Battery Agencies', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HARI HARA CAR WATER SERVICE', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Baba Autoguarage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'godavari car wash', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RIYAZ PUNCHER SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chukka Parimala Industry Saiteja Water Servicing Center', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TYCHE CAST TECH PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '64']
[' Industry Name ', 'Sri Lakshmi Nikita Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUPER HYDRAULICS AND ENGINEERINGS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BABU PUNCHAR SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'AUTOMOBILE SERVICING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMANJANEYA MOTOR WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVADURGA TWO WHEELERS MECHANIC SERVICES', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bhanu Madhuri AUTO Works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree lakshmi narayana engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SKR ENGINEERING', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kiran general engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA AUTO TINKE RING AND BUILDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jabeer body builders', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'New Indian Tractor Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHAIK SHAFIULLAH AUTO WORK', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE MARUTHI MECHANICALWORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KRUPA AUTOMOBILES', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Srinivasa Tractor Service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri laxmi srinvasa saw mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata ramana automobiles', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri chakra Car servicing center', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'YAGNA GANESH TRACTOR WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FAZAL ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SKF AUTO GARRAGE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HINDUSTAN BREAKS CLUTCH SERVICE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'khasim bike service bethapudi', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA MOTOR MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REVATHI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismillah service centre', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MYTHA NAGA sai spare parts centre', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ravi engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaffar Sadiq shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJU AUTO MECHANIC WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi ganapathi car door works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K HARIBABU AUTO MOTOR MECHANIC WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri maruthi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A M Traders', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASTAN AUTO GARAGE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BAJI  MINERAL WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Charan motors car repairs and car wash', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma auto mobile works', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI MOTOR WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai tripura tyres', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M Venkatesulu Body Builders', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak Car Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shiva automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HMB Painting Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'IS Traders', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi Motors', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shanawaz Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Friends Engineering Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANA BIKE MECHANIC WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Asmathullakhan Tyre Tube Valkanizing Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satya deva mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shoukath Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MD Shashavali Lorry Body Builders Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CPC Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FJ powder coating', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Poojitha Automobile Repairs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'New Tawakkal Tractor Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DADU ELECTRICIAN', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Sivani Auto Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yarab Auto Electricals', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prince Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AMMER SAB LORRY BODY BUILDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aadi arts', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jakeer 407 Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Habeeb Tinker Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fayaz Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FRIENDS REPAIRING WORKS AND MOBILE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sangameshwara disposal', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandbasha Car Tinker Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Indian Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Ram Auto Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tawakkal Tractor Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Malik Tyres', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Fairoz Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zabiulla Welding Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHABBEER CAR MECHANIC', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HABEEB WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'devi seddhasri Anjali cycle shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yunus HVM Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA LAXMAN BIKE MECHANIC WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Muneer Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mSri Venkata Ramana travels', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob basha automobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'R M BATTERIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Babajan Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amar Auto Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI SURYA WATER SERVICING', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RK Automobiles', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijaya laxmi reboring works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD DIESEL HOUSE', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Guru auto garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BUSMILLA welding works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KHALEEL BASHA TWO WHEELER MECHANIC WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'subhan tinkering work', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka mahalakshmi auto works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Perfect Body Builders', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBAHANI AUTO GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'A1 garrage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddhivinayaka Pump Room', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T Habibulla Seat Covers', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S HUMERA AUTO GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noor Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nusrath Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Basheer Two Wheeler Shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz 407 Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fairoz lorry garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Body Building Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Reddy auto mobiles and water servicing', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'M K AUTO ELECTRICALS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MARUTI SERVICE', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'janata garrage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syadathulla leath engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla Disel Services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Diesel Automotive service Center', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GN TWO WHEELER ELECTRICAL SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S Rahamathulla Bodybuilding Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Iliyas Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'IRSHAD ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALLABAKASH ELECTRICTION WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Digumarthi Prasad mechanical works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hindustan Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Baba Auto Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Arif Auto electrical works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KK ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri satyannarayana Raju glass works and sticker works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHESH MECHANICAL WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MUBARAK ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Yunus Auto garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Munir Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIRAMULU TINKAR WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'INTIYAZ TINKERING AND WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Tripura Puncture shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rahamath Auto Electric Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sadik Painting Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkatesulu Body building works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SriRama bike mechanic works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mukthiyar HVM Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Diesel Works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MN Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri maridimamba tyre works and auto bike repairs', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanakadurga Gas welding works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gopinath Body builder', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'neelamani durga mechanic shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Indian Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S Sikander Heavy vehicle mechanoc', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mainuddin Tinkering And Body Built Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Nagabhushanam tinker shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prasad bike works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ismail Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramu Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AllaBakah Old Motor Parts', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raqeeb Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raghavendra Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S Fayaz Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JOHAR ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DADAPER LORRY TINKAR', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JK Tyre Retrading', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Seena auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Asad Disposal Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S DEVARJAN', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kadapa Wheels Care', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'UMASHANKAR SPRING PLATES RESETTINGS WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MOHAMMED RIYAZ SPRINGPLATES RESETTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rafiq HVM WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI BIKE MECHANIC', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Akram K S Heavy Vehicle Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basha HVM Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHAIKSHA VALI ELECTRICAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SWAMY AGENCIES RAJU AUTOS', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'NAVEEN ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sadik Lorry Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fakhruddin Lorry Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkatasai diesel service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G Sriramulu Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'manikanta industrial lathe work', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NOOR MOHAMMED HEAVY VEHICLE MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Samiulla HVM Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARIF WOOD PLYING MACHINE WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAND BASHA TINKER WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JABIULLA MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naga Ragavendra Diesel Service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Baba Electrician DC', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Atheek HVM WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kasisiva Wheel Alignment Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MALIK ELECTRICTION WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JK Noor auto engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shafiulla Disposal Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rahamath Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ENTHIYAZ HEAVYVEHICAL MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hussain HVM Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'coastal technolinks', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ZABIULLA ELECTRICTION WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hamara bajaj autoworks', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kayyum Basha HVM Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MP Riyaz LCV Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Zabiulla Grill Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARIMULLA AUTO ELECTRICAL WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MUSTAK AHAMED BEND RIMMER WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tanveez Electrician DC', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Fakroddin Lorry Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHAHABOOB BASHA BUILDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hidayathulla Lathe Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara  turning works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya durga auto mobile and engineering designing and body works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga bjavani Auto works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Saifulla LCV Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHODESWARI TWO WHEELAR  WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'suguna flour mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K Shankar Puncture Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saifulla DC Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramu Bike and jeep mechanic shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi  engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Barkath Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DARASWAMY LORRY PAINTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Zakir Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hafeez Basha HVM', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nanjunda Lorry Painters', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Masthan mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REDDY AUTO WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'H Chand Basha Tyre retrading Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Salam DC Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P S Shakishavali Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MD Basha Tractor Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G N ChandraSekhar Spring Plate Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N Hussain Sab Puncture Machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz Plaining Machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JEELAN BASHA MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kareem Basha Valcunization Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basheer Sab Heavy Vehicle Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aslam Body Builder', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nava Bharath Automobile works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Fayaz Car Mechanic Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V S MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Eswar coastal techno links', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Majid Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVABHARATH DIESEL SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MADINA AUTO WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FM CAR WASH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar motors', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA DURGA BIKE MECHANIC WORKS AND SPARES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anwar Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Eliyaz Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shajahan Car Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shareef Lorry Body Builder', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMANJINEYULU LCV Painting Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M Azambaig Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CHENDU AUTO SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aleem Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Diamond Chasis Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sabjan Chasi Bend Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Akram Tinker Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gangadhar Electrician DC', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI BIKE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGA BIKE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aslam lathe Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A1 Car Wash', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'N S Painting and Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHAIK ASMATH CARTINKER WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara motors Pvt limited', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SJL AUTOMOTIVES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HASEEB REHAMAN SPRINGPLATES RESETTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noor Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KAMAKSHI AUTO WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRIRAM MECHANICAL WORK SHOP', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'FAYAZ MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Irshad lathe Engineering Chasis Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA KUMAR MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramnaidu Mechanic Shed', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADINARAYANA SPRING PLATES RESETTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KVR motors', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SKML CAR WASH CENTRE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Noor Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAHARUDDIN ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOHAMMED YAKUB MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A Q ENGINEERING', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMAN AUTO ELECTRICAL WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satyammatalli truck tires and wheel care', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kanaka durga welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKAT SAI ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Technical Engineering Earth Movers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijaya lakshmi grill works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'welding', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALLA BAKASH PAINTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi narasimha Automobile', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASHA ALLAH TYRE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sekshavali Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Al Fakruddin Automobiles Spares and services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri kanaka mahalakshmi bike works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NOOR AHMED ELECTRICTION WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shabbir Tractor Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ansar Spring Plate Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'devi iron works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S Inayath', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK ABUZAR SPRINGPLATES RESETTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KAN Car and Bike wash', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Amjad auto garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rawoof Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M D Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABDUL AHAD MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOToRZO car accessories', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai durga welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JAYALAKSHMI AUTO AND  AUGRO', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S B Mahaboob Peera Tinkering', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ataulla Radiator Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asmathullakhan Radiator Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Salman Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jabiulla Buffing Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Farooq Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MSN AUTO GARAGE', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA KALESHA VALIBABA AUTOMOBILE ELECTRICIAN', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gayathree automobiles', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVT Spring Plate Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohmmad Noor Tinkering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Zameel Lathe Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shajahan LCV Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Narayana Arts', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Star Radiator Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishi Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kanakadurga Servicing Point', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALL IN ONE CAR GARRAGE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayan engine work', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ashok Mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri kanaka durga welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGESWARA SERVICE STATION', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Suresh Body Builders', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri modha indrani bike repairs', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ameer auto mechanic works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MURUGAN BODY BUILDERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri punya giri automobiles', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOHAMMAD ALI TYRE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dhanalakshmi Automobiles Pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '36']
[' Industry Name ', 'Sri Venkateswara swami auto mobiles', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gutthi Prabhakar', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SAI AUTO WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Amma car garage', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI LEELA AUTO WORKSHOP', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'eswar  motors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW RR AUTO MOBILE WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noor iIlahi Rigging works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayalakshmi Automotives Pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '42']
[' Industry Name ', 'Mohith Truck and Car wheel Alignment', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kavallappa automobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'IBRAHEEM AUTO GARIAGE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Expert Wheel Care sales and services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'bismilla kamankatla works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HAMSA MOTORS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'Moksha sai mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PURNA GARRAGE AND WATER SERVICING CENTRE', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SBR cycle shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DURGA PROCLINE SERVICES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Subramanyam Raju Auto service', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayathri Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUZEEB BIKE GARRIAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHAIK SADHIK', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Master Two Wheeler', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri swamy automobiles', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'FAHIM BODY BUILDING AND AUTO MOBILE ENGINEERING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREE BALAJI WHEEL ALIGNMENT AND WATER SURVICING', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Satya Gangamma Lorry Body Building Works', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madhavi Retraders', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ASIF ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'RAJA RAJESWARI AUTO GARRAGE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sumanjali badi builders', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri rama tinkaring and painting works', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'DEEPTHI AUTO SERVICING GARAGE', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Venkateswara welding shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SVR Motors', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SIVA SAI MECHANICAL WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'ASMA tyres shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sai Sri decors spares and washing', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'STAR CAR CARE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'ARUNA BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SRI SRINIVASA BODY BUILDKNG WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'VENKATA RAMANA BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Anandam Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'S K MOTORS', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Balu cycle shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Venkateswara gas welding woks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'star silencer and diesel works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Jai Santoshi Matha Mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Swathi body building', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Nava sai Auto garage', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Vijaya sravya mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', '9 Stars Raightway Multi Cartech', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'S S kanth motor cycle works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'MD Irfan basha meters and seat works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Ravi Spray Painting Works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'KGN ELECTRICAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Venkatesh welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'fayaz lory mechanic works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'H ANSAR OLD SCRAP TYRES  OLD TUBES GUTTERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'chand BASHA TRACTOR GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'munna body building works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'indian electricals', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SRI SAMBA SIVA PAINT WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'anwar welding and lath works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'INAYATHULLA VEHICLE MECHANIK WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Prasad Body Building works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'HABEEB BREAK LINING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'RAHAMTHULLA RADIUM STICKERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sree nandi motors', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'babajan body building works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'KOH  E TOOR AUTO GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'PADMAVATHI VENKATESWARA PAINTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Akshya Traders', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'shoukath heavy garage works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SRIKANTH BIKE MECHANIC AND WATER SERVICING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'A1 Diesel house', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Xpress Car Wash', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SURESH ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sunkanna auto mobile puncture and air pump shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Bismilla Shed Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SHANU AUTOMOBILE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'vinay tyre retraders', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Vikas Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'S R BIKE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'STAR FOUNDRY', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Abdulla Tyre Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Shankar maruti service', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'bismilla Service point', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sri Lakshminrusimha welding and tinckering works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Noorjahan Lathe Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'CarMate Auto Service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Janatha Lathe  And Welding Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SMR Tractor Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Jaddamma Mechanical Garrage', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'ashok mechanical works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'KGN TRACTOR WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'MADAV MECHANIC SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Durga Automotives', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Syed Nayub Rasool Bike Point', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Star Auto Mobile Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Madina lathe works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'MG BROTHERS PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Kiranmayi welding workshop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Fakruddin Auto garage works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Durga Shankar welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'JR CAR SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Vijaya lakshmi bike service point', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Farhath Bike Care and Service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'TURBO AUTOMOTIVES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SRI RAM MOHANA AUTO WORKSHOP', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'GAJULA CHINNA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SIVA SAI BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SLG motor service center', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Raju welding  lathe works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'lakshmi tirumala stickering', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'AMANULLA PAINTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Hanuman Painting Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Swamy clutch and brake works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SRI VIGNESWARA TRUCK SERVICE HUB', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Anand bike Mechanic works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sri Venkata durga auto electrical rewinding works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'VENKATESWARA MOTORS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Automobile service station', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Charan computer stickerline', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'SAFENVIRON ASSOCIATES', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'BIO MEDICAL WASTE MANAGEMENT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '23']
[' Industry Name ', 'SAFENVIRON', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'BIO MEDICAL WASTE MANAGEMENT', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SRIVEN ENVIRON TECHNOLOGIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'BIO MEDICAL WASTE MANAGEMENT', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Sreenu water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'BioChemical Process', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Medical lab', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Venkateswara medical lab', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Vijayalakshmi agencies', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Building Construction Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA GRANITE  MARBLES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Building Construction Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sarvani industries private limited', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Building Construction Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PCR CHAMBERS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Building Construction Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri bhavani enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Building Construction Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vasavi entirprises', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Building Construction Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HIVE LOOP LOGISTICS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Disha point', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARUNA ICE INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KOMALA RESIDENCY', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GSP FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAPURNESHWARI FOOD CATERERS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SWATHI TENT HOUSE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Catering and Accommodation Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Quality laboratory services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CHEMICAL TESTING LABORATORY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LALITHA SPICES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CHILLING PLANTS INSTALLALATION', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri anjaneya milk dairy', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CHILLING PLANTS INSTALLALATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CIVIL ENGINEERING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Gowrishankar welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CIVIL ENGINEERING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata ayyappa enterprises', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CIVIL ENGINEERING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jeevanashakthi enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CIVIL ENGINEERING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Swamy Janardhana  Arc Welding Repairs', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CIVIL ENGINEERING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AQUA INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Nallamma power Looms industry', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Anand colour dying works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Ramanji net world', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'COMPUTER TRAINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'internet center', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'COMPUTER TRAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROHIT INTERNET AND COMPUTER SERVICE CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'COMPUTER TRAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai ram technologies', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'COMPUTER TRAINING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ultra tech concrete', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CONCRETE WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'THE INDIAN HUME PIPES CO LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CONCRETE WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'Coramandal Concrete products Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CONCRETE WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'APARNA ENTERPRISES LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CONCRETE WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Tirumala cement works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CONCRETE WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siri cashew industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Construction of Roads And Buildings and Agro Farm', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'HARE RAMA HARE KRISHNA ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Construction Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Muthyamambha idols', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Construction Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HARSHA IRON  CENTERING', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Construction Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chakresi gypsum plaster', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Construction Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI BALAJI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Construction Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA VARALSKSHMI INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'cosultation for environmental monitoring', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA Industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CROP AND ANIMAL PRODUCTION HUNTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sarath flour mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CROP AND ANIMAL PRODUCTION HUNTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yalla venkataramana', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CROP AND ANIMAL PRODUCTION HUNTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ramakrishna seeds and processing unit', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CROP AND ANIMAL PRODUCTION HUNTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUMITHRA SEEDS PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CROP AND ANIMAL PRODUCTION HUNTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'L Chandra Naidu oil rotary', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Crude OIl storage Facility', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'reddy industries', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Crude OIl storage Facility', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI Srinivasa Engine and floor mill', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Crude OIl storage Facility', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dayatri Dairy', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Dairy Farm', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri surya agro products', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Dairy Farm', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'HATSUN AGRO PRODUCTS LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Dairy Farm', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Best dental labs', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'dental hospital', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'DC DIGITALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Diagnostic Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ali Khan Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Diesel pump repairing & servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Indian technical services', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Diesel pump repairing & servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SR Digitals', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Digital marketing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENNELA DIGITAL VISIONS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Digital marketing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai srinivasa bamboo dipo', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'DISTRIBUTION OF CONSUMER PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Milk ProductPvt LtdBKothapalliP Kothapalli Mandal', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'DISTRIBUTION OF CONSUMER PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'DISTRIBUTION OF CONSUMER PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI GANESH AGENCIES', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'DISTRIBUTION OF CONSUMER PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JET LAUNDRY SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'dry cleaning', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sivajyothi educational and development society', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'EDUCATIONAL INSTITUTION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI MARUTHI PRINTERS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'EDUCATIONAL INSTITUTION', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI DHANA LAKSHMI EDUCATION SOCIETY', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'EDUCATIONAL INSTITUTION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '89']
[' Industry Name ', 'Hibeam LED unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Bhavani Electrical works and service', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAHAMAT AUTO ELECTRICALS AND RE WINDONG WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SNEHA ELECTRICAL WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'sun one power solutions private ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SYAMA MECHANIC SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'baba computers and mobiles', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Taj electricals', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALI AIR CONDITION AND REFRIGERATION', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJESH ELECTRICAL SERVICE CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hi tech enterprises sales and service', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S Gouse electrical and revinding works', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Akram Fans repair shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi narashima electriclas', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vighneswara auto electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anil Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHARAN ELECTRICAL SERVICE AUTO WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Electrical Servicing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA ELECTROPLATING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ELECTROPLATING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VISWANATHAN B', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'Sri Satya Oil Mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'ENVIRONMENTAL MONITORING SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS AGARBATTI', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Flavour Fragrance and Botanical Extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KESHAV RAMTA LABS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD AND WATER TESTING LABORATORY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Aparna Minerals Water Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD AND WATER TESTING LABORATORY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENGAMAMBA ICE FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD AND WATER TESTING LABORATORY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Golden Biscuit Bakery', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree balagi rice and flour mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khaja foods', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chettu kinda hotel', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'm satyanarayana', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Someswari rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bakers Inn', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ponalamma Agency', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'thirumala said ram foods', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Surya chandra ice parlour', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD COURT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baratam ravi kumar floor mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'FOOD TESTING LABORATORY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jagatha Apparao KalyanaMandapam', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Function Hall', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Veera venkata satyanarayana function hall', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Function Hall', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SSVC AIRTECH PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Basavaraju blow machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kishore blow machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eediga Thippeswamy', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHITTEM JAGANATH PETROLEUMS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'coramandal industrial gases Pvt lmt', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI KRISHNA INDUSTRIAL GASES', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANDHRA CARBONIC GAS IND', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'GAS FILLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'secretariat', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Govt Contract Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'viswanatha swamy jinna', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Granite Machinery Blade Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VS GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Granite Machinery Blade Servicing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANTHENA SATYANARAYANA RAJU CHARITABLE TRUST', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Health care establishment (as defined in BMW Rules)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '310']
[' Industry Name ', 'Orbit Diognstic Center', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Health care establishment (as defined in BMW Rules)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SADHANA HOSPITAL', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOSPITAL SERVICES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Vijaya Sree Super Speciality Hospital', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOSPITAL SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Amrutha Heart Hospital', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOSPITAL SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'MRUDULA HOSPITAL', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOSPITAL SERVICES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA HOTEL', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOTEL AND RESTAURANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dharmika hostel', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOTEL AND RESTAURANT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Chillies Food Paradise', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOTEL AND RESTAURANT', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'Spice Touch', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOTEL AND RESTAURANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Surajram Hotel', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOTEL AND RESTAURANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Annapoorna Restaurant and Caterers', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'HOTEL AND RESTAURANT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'kurmana kondamma grainmiller', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'ibha computer hub', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MEE SEVA CENTER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LUCKY MOBILES', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kumar Offset printers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DHANARAJ TV CABLE NETWORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Pixentia Soliutions India Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '31']
[' Industry Name ', 'SREE RAGAVENDRA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'information technology enabled services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'iffico kisan sez ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Infrastructure development project', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'Sivaiah xerox  centre', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KS Computers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MN NET center', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sree Vedha Internet and Xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sreeram Communications', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Computers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANAKAMAHALAKSHMI COMMUNICATIONS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raj communication', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'meeseva', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GARUDA TELEVISION CABLE NETWORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Internet Service Provider', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SYAM CAR DECORS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tirupathi Venkata Ramana cashew industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '100']
[' Industry Name ', 'mahalakshmi general store', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri devi floor mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Puja Online Services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CNC ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Venkateswara Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RK ONLINE SERVICES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Online services and internet', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahesh online services', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Saleem communications', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MM digital seva', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ameen computers', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARGAV INTERNET', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshman cloth Store', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vishnu Studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kumar tailaring shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MARTHI HARD WARE AND WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'nikki management services', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Enterprises', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sampath vinayaka online service', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DOLFIN ICE CANDY', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Pavan Sree Technologies and Books', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LOKESWARA FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RKP fabrication and Erections', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEERANJANEYA RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'geetha ice company', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ayyappa water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Ganesh flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tax wing india', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAHNAVI COMMUNICATIONS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'IT SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sunitha flour Mill', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'kirana', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna coffee and general stores', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'kirana', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkareswara floor mill', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'kirana', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Durga Ganesh oil and floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'kirana', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PEANUT MACHINE', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'kirana', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANYAKA PARAMESWARI FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'kirana', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Metal art works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LASER CUTTING OF INTERIOR ITEMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STAR WHITE LAUNDRY SERVICES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Lakshmi Whites', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ballagiri star white laundry and dry cleaning plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MEGHAN POWER LAUNDRY  DRY CLEANERS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Subhan Cotton mill', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NJ LAUNDRETTE', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Modhamamba stitch and designer', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VYLET INDUSTRIES PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'vaishnavi enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LAUNDRY SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ONGOLE LOGISTICS PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LOGISTICS SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'E COM EXPRESS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LOGISTICS SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIVA LOGISTICS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LOGISTICS SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srinivasa rice mill', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LOGISTICS SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Khaji Mahammed sab jinning machine', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'LOGISTICS SERVICE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JHON FEERA AND SONS TIER WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganapathi Mechanic and welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KB and AJAS AUTO GUARAGE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Maruthi motors', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Subhani Auto Electronical Works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bike Repairing Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA TYRES', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijayalakshmi travels', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nurjahan general engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vali fabrication works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ESWAR REPAIR AND SERVICE', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rajeshwari Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'bismillah engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Abid auto electrical and battery works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata sai disc repair', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Budekhan tinkering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nelu mechanical shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Baba engineering works Hameedullah shariff', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Yashwant Mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sathyanarayana industrial works kuppili brahmaji', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAVINDRA Gali machine and puncture shop', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Narasimha electrician works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajesh Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mastan automobile works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Prabhu hydraulic sales and services', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASIF RADIATORS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ratnakar fabrication', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'baaji shock absorbers recondition works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai BALAJI bike works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI LAASYS AUTO SERVICE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KGR mechanic works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rafi Car Mechanics', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GS A to Z CAR DECORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijayadurga auto garage', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI NARASIMHA BIKE MECHANIC', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nageswara Genaral Engineering and motor reboring works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganesh Motors', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Shafi bike servicing', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mansoor Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ravi two wheeler sales and services', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MADINA DISPOSALS AND MECHANIC WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RK BIKE ZONE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SB mechanical work', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Maintenance & Repair of Motor Vehicles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Veera Venkata Satya Narayana Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri chowdeswari agencies', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Anjaneya trunk works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Devi Exports', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NAGALAKSHMI ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI PRASANNA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ramyasri reboring works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEVEHILLS SURVEY AND ENGINEERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AUTOMOBILE ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AQUA TECHNOLOGIES IN VIZAG', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHIENARY ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Narsimha Mini ice plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MARINE SOLUTIONS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI KRISHNA ICE CANDY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MARINE SOLUTIONS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Minerals lab services Pvt LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MARINE SOLUTIONS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'gdeavid spray and painting works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KAMAKSHI PAINTING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Mythri Paints and Chemicals', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '29']
[' Industry Name ', 'Sri Venkateswara body building works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Bhaskar chemicals', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lorry painting works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata siva parvathi enterprises', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA PAINTING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ram mohan manufactures', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MECHANICAL CLEANING AND PAINTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vinayaka Work Shop', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mechanical Testing of Materials', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA MEDICAL CENTER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JB Labs', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Phani Geershma Agencies', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahesh Diagnostics', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Harsha mother and child hospital', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRL DIAGNOSTICS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'RAPHA MEDICAL CENTRE', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'LAYA HEALTH CARE PRIVATE LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATESWARA SCAN CENTER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Max imaging and diagnostics', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'quality imaging center', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'MEDICAL DIAGNOSTIC SERVICES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SIVA GANGA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mineral stack yards / Railway sidings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Geetha ice', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mineral stack yards / Railway sidings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai waterplant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mineral stack yards / Railway sidings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMA HANUMAN PICTURE PALACE', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mini Theatres/Mini Digital Theatres', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'V ENTERTAINMENTS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mini Theatres/Mini Digital Theatres', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'venkateswara movie mart', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mini Theatres/Mini Digital Theatres', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'royal talkies', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Mini Theatres/Mini Digital Theatres', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara soda gas compony', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Natural Gas transportation through Pipelines', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sasi rekha agencies', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Natural Gas transportation through Pipelines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE VENKATESWARA  NITRADING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Non Destructive testing of metals and material', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'saikumar mini ice company', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Non-Banking Financial Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zerox Machine', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Non-Banking Financial Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SBI CUSTOMER SERVICE CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Non-Banking Financial Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V NOOKANEELADRI RAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Oil and gas transportation pipeline', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanagala filling station', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Oil and gas transportation pipeline', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sirisala Petroleum AZencies', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Oil and gas transportation pipeline', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Lanar Enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Packing of Electrical and Electronic goods & Warehousing services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TCIEXPRESS', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Packing of Electrical and Electronic goods & Warehousing services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri ganesh sounds and travels', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Packing of Electrical and Electronic goods & Warehousing services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA PHOTO STUDIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Maruthi Internet and xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rk jirax', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PVR DIGITAL STUDIO AND CSE DIGITAL SEVA', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajesh Photo Studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pavan Photography', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sasi Photo Studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nitya studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHU EVENTS AND STUDIO', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VVN STUDIO AND VIDEO', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balu studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMA DIGITAL STUDIO', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri sai shyam digital studio', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi venkateswara internet studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mayura photo studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai venkateswara studio and video', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAKSHITHA PHOTO STUDIO AND VIDEO COVERAGE AND COLOR XEXOX', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI PHOTO STUDIO', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijay digital studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ravindrastudioandvideos', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'John Digital Studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siddhartha photo studio and internet', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hema Digital Studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mamatha studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naveen Photo studio', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'akshya photo studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'udai studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Om Sai Lahari Studio and Video', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sapthagiri photo frame work shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Rajendra stickering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Lakshmi Digital studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANOJ PHOTO STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya photo studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chanti photo studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Niranjan photo studios', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMISAI DIGITAL STUDIO AND VIDEO', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'wedding mall printing press', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Saicharan digital photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LASYA DIGITAL STUDIO AND VIDEO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tacit Digital', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Goutimi photo studio', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MB STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bhaskar photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mailapalli dhanaraju', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMULYA DIGITAL STUDIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANURADHA PHOTO STUDIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kosangibariki Kesava Rao Photo Studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Charan Digital Studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavya Sri Studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nookambika Digitals Flex and printing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'jagadeeshwari Digitals', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rohini photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA DIGITAL STUDIO And FRAMES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'durga bhavani photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai jyothi photo studio', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya photoshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gopi studio', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RDG PHOTO SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sitara digital photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tulasi studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DJ digital studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karuna Jyothi digital photo studio and video', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA DIGITAL STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE SAI PHOTO  STUDIO AND  XEROX', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parameswari xerox service', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SF studios xerox studio printing', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandini studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mba photography', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SHARADA STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manasa Digital Studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri modhamambha studio and xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manorama studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SET TECHNOLOGIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHUNNU DIGITAL STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dream studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANTHI COLOR LAB', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE Vijay photo studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SARADA DIGITAL STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SIVA DIGITAL STUDIO', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PR Studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI PHOTO COLOURLAB', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mani Studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'photo studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'naveen designs stickerline studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRAVANI PHOTO STUDIO LASURE COLOUR LAB AND AMP FLEX PRINTING', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'star studio', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW SREE LAXMI STUDIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA DIGITALS AND PHOTO STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Akshaya Digital studio and video', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW VENKATA RAMANA STUDIO  COLIUR LAB', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'REVATHI DIGITAL STUDIO', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI BEERALINGESWARA SWAMI PHOTO STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree sai digital studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Satya Prabhu studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri laxmi studio  video and xerox', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'new rk photo express and studio', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SIRI DIGITALS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRABHU PHOTO STUDIO', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Adi sheshu digital photo studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vasavi studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAJA DIGITAL STUDIO AND VIDEO', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasu Digital Studio', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SWETHA PHOTO STUDIO', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Phototec Photo studio', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RP digital studio and video', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji internet and xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chetana Studio and Travels', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vamsi Industries incense sticks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE']
[' Industry Name ', 'sri venkateswara engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER LAUNDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YERRISWAMY LANDRY IRON', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER LAUNDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI BABA CREATIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER LAUNDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vijaylakshmi Agencies', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER LAUNDRY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moonlight Dry Cleaners and Laundry', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'WELL WASHER DRY CLEANING', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NO1 SAREE ROLLING', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rajika seva sangam', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'WASH HOUSE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BRITEX POWER LAUNDRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Madulatha laundry works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prakamya Siddhi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Power Laundry Services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'A SURESH', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A MARKONDA NAIDU', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GOVINDAMMA S', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'A GIRIDHAR NAIDU', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T RAMESHBABU', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'V MADHU', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KC PARTHIPAN', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S SHANMUGAM', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'POWER SUPPLY IN POURLITY FORAM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Net park', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi pranavi internet and xerox', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VAIL INTERNET', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KANNA INTENETXEROX', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rajeswari Xerox shop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA ONLINE SERVICES', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HENRY INTERNET MOBILE ACCESSORIES SERVICES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Visva Karma Online Center', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Net Cafe', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha Internet Service', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JS ALL IN ONE NET CENTER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ineternetshop', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI CHOWDESWARI INTERNET AND XEROX CENTRE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'raj net cafe and printing', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHESWARI ONLINE SERVICE', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI ONLINE SERVICE S', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SGR Communications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Hareesh Mee Seva and CSC', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sivamani Internet and Xerox', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AP Fiber net', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Friends Internet', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri ganesh net centre', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manikanta internet and Xerox center', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri chaitanya educational and welfare society', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai internet', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'satish computers and internet centre', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Tulasi cable network', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Providing Internet service', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri ramanjaneeya water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANANTHA LAKSHMI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AKSHAYA RO Mineral water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Karim RO water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srisatyadeva RO Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jesus saves water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMRUTHA PURIFIER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri ganga safe drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla Mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'the secretary', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BODIPALLI SAMRAJYAM', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mutyalamma water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K A S WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Nidanampati Sri lakshmi ammavari charitable trust', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'surpanch water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Modi uchitha jalasuddi kendram', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SARPANCH GRAMPANCHAYAT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRM watet plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'siva ganga water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sadana social service', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Puskala mineral water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Indhira Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'WA water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TALLURI NAGESWARAO', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI RAM WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'G VEERA REDDY PURIFIED DRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Varun mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vinayaka Water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bujji water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI MINERAL WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madhura memorial trust', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M R S ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA BHAVANI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'APOLLO DEW DROPS MINERAL WATER', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi channkesava swami mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KEERTHANA PURIFIED DRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALEKHA MAHIMA SURAKSHITA mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JASTI SIVA SAI KRISHNA WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SARPANCH GFRAMPANCHAYATH', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Annapurna Aqua marshes society', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Masafi Drinking Water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI KRUPA MINERAL WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Msr charitable trust', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ramulu koteswaramma water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAHEB HUSEN CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Swetha Industries', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri nidhi water plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'D R Aqua 2', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sivaganga purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Water Plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'stbl projects limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SARVAN BEVARGES', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ganga Mineral Water', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JB COOLING WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Manikanta Water Plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chennayapalem Water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Naveen aqua foundation', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri godavari purified drinking water', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srivani charitable trust healthy drops', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ANNADASU VARA LAKSHMI', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siddamma Mineral Water Plant', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Om Sri purified drinking water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LKR WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M R D S PURE DRINKING WATER', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai sri industries', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'DJ water Plant welfare Association', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ganesh water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'hanumana subhash chandra bose', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vinayaka water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMARA SUBHASH CHANDRABOSE TRUST WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RK industry', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri taraka rama mineral water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva ganga water purifier centre', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DR water supply', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DDAY AQUA MINERAL WATER', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhuvana purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI Mahalakshmi purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dasari Papanna Purified Drinking Water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAVASAR VISION INDIA WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama aqua pure', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI Rama Sai Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri hari water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madeena Bore water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PAVANKUMAR WATERPLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sujala water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AYESHA WATER FOUNDATION', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI SIRI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VINAYAKA FOUNDATION', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Siddareddy water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'chowdeswary water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhavanam Hanimireddy Surakshitha Manchiniti Sevasocial', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUDHA PURIFIED DRINKING WATER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gaffaria purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GTM water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganga mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'C Prabhakar Reddy water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chennareddy water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANIL PURIFIED DRINKING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M arunamma Water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ahobila lakshmi narasimha purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sorojinamma  water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Canadian blue inc', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SMR DRINKING WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Paritala ravindra memorial trust', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIGNESWARA PURIFIED WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla filter water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Enterprise', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESWARA MINARAL WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ameen water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA AND KANCHARLA MEMORIAL TRUST', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA MINERAL WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manikanta water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Arigela Sriramurthy foundation', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Glo vari minaral water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI CHARITABLE TRUST PURE DRINKING WATER', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THE BRAHMANAKODURU MARIA MATHA SOCIETY', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prabhakar mineral water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NTR SUJALA SRAVANTHI', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYADURGA MINERAL WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMRUTHA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi Tirupathamba Flavoured Water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KODANDARAMA GODAVARI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rajamma water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mani water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'fresh water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Ganga Water Plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ASKR water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'thota water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri rama ro water plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kamakshi Sametha Ramalingeswara Swamy water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kullayappa naik water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S B N PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI ENTERPRISE', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri chennamma purified water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'YASASREE water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVS MINERAL WATER POINT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'doddakula  and Ala charitable trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NTR SUJALA SRAVANTHI', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RATNA PURIFIED DRINKING WATER PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUNRIRISE FLAVOURED WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MINERAL WATER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhageeradha RO Water System', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Venkata Ramana Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'obulesu purified water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T45rimula purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BALAJI CHARITABLE TRUST', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vandavasi purified drinking and  cool water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RO water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Appecherla Neeraja Mineral Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAYATHI MANCHHINITI SEVA SANGAM', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI CHENNAKESAVA PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'hanuman enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vision Aqua R O Water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri vidyasri water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GOPAL REDDY WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mounika purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surakshitha Manchi Neeti Pathakam', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Taj charitable society', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROHINI KUMARI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA MINERAL WATER PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patil Thirumala Reddy Mineral Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESH WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THE VIJAYAWADA FREEMASIONS CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Majjigowri RO water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tanvi water industries', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MARUTHI MINERAL WATERS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASIREDDY RAM BANGARAYA SWACHADHA SEVA SAMATHA', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pujitha minaral water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pendekanti purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'asha mineral water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Amrutha Ganga Purified Water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Theertham Mineral water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAVITRAMMA WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shiridi sai sahaja mineral water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sainik water purified plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGN water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'dharani purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'durgamma water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TATA SAHAJA R O PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PAVITHRA PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva Jyothi water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHA SHA WATER PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri valluri Ramakrishna foundation', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'shyam R O water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jayalakshmi mineral water foundation', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'viswanath nayudu Water purified plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ZAM ZAM WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva shakthi Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Kanchammatalli water Plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'AB Aqua water purifier', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai nadha serp sahaja water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramalingeswara mini water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagireddy Haritha mineral water supply', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'khan water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TARAN ENTERPRISE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'prabhavatamma water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K S R purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva sanker water plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri siva Sai purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASTER AQUA', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G R PURIFIED DRINKING WATER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Om Sri Siva Ganga mineral water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri chowdeshwari devi purified drinking water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Peddammathalli water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'tirumala purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI MINERAL WATER PLANT SUPPLIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'manvitha purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SR brothers water', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madeena water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nookaraju seva samstha', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALLA enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NANDU PURIFIER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yadala Mamatha RO Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GANGOTRI welfare society', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DKM AQUA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surendra purified drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANGA PURE MINERAL WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri lakshmi Vasavi purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Water Foundatin', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NALLAMARAMMA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mineral water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijaya purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amrutha water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'himalaya cool and mineral water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'madala agros', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K PURIFIED WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAHAJA MINERAL WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Ganga Mineral water Plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mastan water plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri maridimamba charitable trust water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA CHARITABLE TRUST R O WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Murali Krishna water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madhu Minerals', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'heera pure drops purified drinking water', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ganapati Purified water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VAVAMSADHARA WATER PLUS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Nagaraju water plants', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijayalakshmi water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Techno aqua tech pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mannava swachanda seva samasta ro water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sairam purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Achala purified drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jakarta Trinadha sai kumar', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Surya purified water', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob basha purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hanumara Subash Chandrabose', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DVR DRINKING WATER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MINERAL WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PVS RO FILTER AND COOLING WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI SRINIVASA AQUA INDUSTEES 11 AYINADA SATYANARAYANAPURAM VISAKHAPATNAM', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Keerthi mineral water plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Devi Water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'purviksh vishaka water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMULYA PURIFIED PACKAGED DRINKING WATER', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIVA KALYANI FILTER WATER FOUNDATION', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Samba Murthy Naidu Water Plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nandini Water Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJA PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI TARAKARAMA WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAMU PLANT', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHAVANI ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Amulya water plant', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sai Ganga Cool Water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GURAJADA WATER FOUNDATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kavya water plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prudhvi Purified Drinking water', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK CHARITABLE TRUST', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'OVS PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Munnagi Charitable Trust', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chandana Purified Drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GNK Purified drinking water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mary Water Plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'priyanka mineral water works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sankalp purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Akkayamma Mineral Water Plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MEGHANA PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sivaganga purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DRAKSHAVALLI MINERAL WATER AND COOLING WATER', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'varun aqua pearl drop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAEN02 FRESH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kingway super more quality water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HAPPY LIFE WATER PRODUCTS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'vindya water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Friends water plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KAVERI INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RAMAPPADU WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pedda papaiah seva samiti', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOUNIKA SEVA SANGAM R O MINERAL WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'krishna aqua tech', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa aqua plant', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'PEMMANA OBIREDDY PURIFIED DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ramu RO Mineral Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tagur waterplant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chinna water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'GVK WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Krishna kumar purified Drinkingwater', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai health care', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SULTAN WATER PLANT', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MARAGANI VENKATARAMAYYA MEMORIAL TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOYYALA RAGHAVAIAH CHARITABLE TRUST', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAVEERA DRINKING WATER', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dharani Water Plant', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivas Goud Water supply', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'meharunnisa enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sree Vishnu mineral water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai ram purified water', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V P R foundation', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Durga purified water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Water collection', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maremma talli water plant', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sunrise filter water', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S S WATER PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ganga water plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baskar purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata Sai water plant', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA KAMESWARI TATA VARI PURIFIED WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SVK WATER PLANT KAGITHALAPUR', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree durga water plant', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JAI MATHA HEALTHY FAMILY DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GPR RO Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai sireesha water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWACHHA NEER', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sreeja Purified Water', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THHARUN COOL WAATER', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Gayatri water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'King food products and packages', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RO Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIBAGUNTLA VEERA BHADRA SWAMY PURIFIED DRINKING WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS Krushitha Water Services', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AFRIN MINERAL WATER', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KLH AQUA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Tulasi Krishna RO plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANAND WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Amma Purified Mineral Water Plant', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pragna Purify Drinking water', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi water', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ali Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI MINERAL WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIMHADRI AQUA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Elahi Mineral water Plant', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VARUN SUDDA WATER KENDRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Exotic bevarages', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRIYA ACQUA PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GM Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Sindhu Mineral Water', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SESHU COOL MINERAL WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bharik Chamal mineral water plant', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Ramana RO Water plant', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S LAKSHMI WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'PURIFIED DRINKING WATER SUPPLY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi eswara diesel house', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Railway Locomotive workshops / Integrated Road Transport workshop / Authorised service centres.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maheswara offset printers', ' District Name ', 'East Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RAPID PROTOTYPING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'reddy shameena', ' District Name ', 'Kadapa', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Recreation & Fitness Centres', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'santhosh Tailors', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Recreation & Fitness Centres', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Narasimha earth movers', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RENTING AND LEASING OF MOTOR VEHICLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRS ENTRPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', 'RENTING AND LEASING OF MOTOR VEHICLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moghal auto works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Shafi Engineering work shop', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AJ power tools', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'New star electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baba electrical works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJU ELECTRICAL WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Divya auto electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Althaf mechanic garage', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shara Engineering work s', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai Rewinding Works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMULU WATER SERVICING CENTER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Jabi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Panduranga lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagulu Motor  Rewinding works', ' District Name ', 'West Godavari', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGA GANAPATHI ELECTRONICS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISSU TV MECHANICS', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PEDDABBA ACHARI WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Kumar works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MM refrigerators and air conditioners', ' District Name ', 'Guntur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'moeen welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BHAVANI ELECTRONICS REPAIR', ' District Name ', 'Srikakulam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS electrical works and rewinding', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'chandu computers', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ROSHAN ELECTRICAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V ELECTRICAL SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jagadeesh welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'REPAIR & SERVICE OF ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI STEEL FURNITURE', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI Ganesh enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Madeena Marketing', ' District Name ', 'Krishna', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'GULAM TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CC MATTRESSES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI COIR INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BABA ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Swaroopa Mattress', ' District Name ', 'Krishna', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bed manufactures', ' District Name ', 'Prakasam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AERO FLEX MATTRESS PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'superior rubberized coir industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'MADHAV AND RAHUL COIR MATTRESSES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'LOVELY COIR FOAMS PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '26']
[' Industry Name ', 'Venkateswara industries', ' District Name ', 'Krishna', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HONEY COIR FOAMS PRODUCT', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'M S N BEDDING PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR MATTRESESS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYASAI COIR PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BLOCKS FROM COIR HUSK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srilakshmi coir industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BLOCKS FROM COIR HUSK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kali Krishna enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BLOCKS FROM COIR HUSK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Nagajanani coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BLOCKS FROM COIR HUSK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI THARUN MODERN RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BLOCKS FROM COIR HUSK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BRIQUETTES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KKR BIO FUELS', ' District Name ', 'Prakasam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BRIQUETTES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'WOOD PECKER FOREST PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR PITH BRIQUETTES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI VIJAYA BHAVANI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Amrutha Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SUGUNA FIBRE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'veerabhadra coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JAYA CURLED COIR PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'EAST OCEAN COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahalakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Krishnaveni Decorticating Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AFFORD INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coir Raw Fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SATYA SAI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'GANDHAM RATNA KUMARI', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak yarn coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pragathi coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAJA RAJESWARI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasishta coir yarn', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'konaseema coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sanjivani coir', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VIGNESWARA COIRYARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri saieeswara coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'veerabhadra coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'COIR ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Santosh coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'veerapadma coir yan industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI ANJANI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMAKRISHNA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI LALITHA COIR PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Bhavani Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri satyanarayana coirs', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hanuman Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI HARSHITHA FIBER INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi Narasimha Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Teja coil industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAJENDRA PRASAD COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JK coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SOWMYASRI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHINTAPALLI COIR WORKERS INDUSTRIAL COOPERATIVE SOCIETY LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'A E KANAMMA', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Narasimha Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE SAI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Kumari coir industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Mahalaksmi coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANAKA DURGA COIR INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAVULAMMA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ASHOK COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ome balaji coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S S COIR PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIDDHI BHAVAGNA ROPE INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri pallalamma coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PUJITHA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sree Durga Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MV coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SREE VIGNESWARA SADGURU SWAMY COIR INDSUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkata Durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vyshnavi coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AD javeerapandyanadar and brothers  nagapatnam', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIMAL BHUSHAN YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ramakrishna coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'veera venkateswara coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anasuya Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VASANTHA LAKSHMI COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijaya durga coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anuhya Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYADURGA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mangadevi Coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siva Surya Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Santhoshi coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SURYA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'AKHILESH INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SITA MAHALAKSHMI COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GAYATRI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI RAM COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai durga coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI BHAVANI SANKAR COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'PEMMADI NARASAMMA', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri mutyalamma coir rope industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SREE DURGA COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'PADMAVATHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'KOTHAMMA TALLI COIR FIBER EXTRACTION UNIT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR ROPE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Nagamani coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Veerabhadra coir ropes', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Mamatha Venkata Naga Sri Coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Yatam Ganga bhavani coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sai ram coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Rama Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS Veera Durga Navya coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri sita ramaraju coir workers society', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Shanmukha Ganapathi  Coir yarns', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'MS Srinivasa rao coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Vijaya Lakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'yedida Padmavathi coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vasamsetti venkateswara coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Jyothi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshmi durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'satya prasad coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jai vijaya durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS TULASI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'kalavathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Samitha coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MS DEVI GAYATRI COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI NARAYANA COIR PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ms Sri Lakshmi Srinivasa Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'MS Sri Sai Durga Coir Rope Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkateswara Coir and Ropes', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ruthwik Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'DURGA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHUVANES COIR YARN INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MS Venkateswara coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIJAYA DURGA COIR INDURSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'jagannadh coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MENAKSHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MS Kalavathi Coir Yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Samatha mahila coir welfare society', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MS INDIRA COIRS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRIRAM COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri siddi vinayaka coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'M S LAKSHMI DURGA', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MS Bharath Coir', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'RAJESHWARI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Ganapathi Coir Rope Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKADURGA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MS Sri Sai Durga Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vijaydurga Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MS SRAVANI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI ARUNA JYOTHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Vinayaka Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SIMHADRI COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'UDAYA BHARATHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'karthikeya coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI DURGA COIRYARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'mahadevi coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SUBHODAYA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Ganapathi Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Vijayalakshmi coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GAYATHRI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jagadish Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MOTHER TERISA COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MS SAINIK COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Kanaka Mahalakshmi coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MOUNIKA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COIR YARN', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Green farm agri products', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Manufacturing Of Coir Pith Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Prasad Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Manufacturing Of Coir Pith Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SVR  BEDDING  INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'MFG. OF COIR FOAM SPRING MATTRESSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S V R ENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'MFG. OF COIR FOAM SPRING MATTRESSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MMENTERPRISES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'MFG. OF COIR FOAM SPRING MATTRESSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'RS MATTRESSES', ' District Name ', 'Anantapur', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'MFG. OF COIR FOAM SPRING MATTRESSES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANJALI DEVI   FOAMS', ' District Name ', 'Prakasam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'MFG. OF COIR FOAM SPRING MATTRESSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '17']
[' Industry Name ', 'SRINIVASA COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Raw coir fibre', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JHANSI RANI COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Raw coir fibre', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raja rajeswari ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MALLESWARA RAO ICE SERVICE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi ice company', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri rama ice parlour', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIRIMAHESWARA COLDSTORAGE PRIVATE LIMTED', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VISWA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Venkateswara Cold Storage Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Priyanka cold storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI CHAITANYA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMULYA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'OMKARESWARA MILK COOLING CENTRE Badveedu Cherlopalli', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MANJUNADHA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ruthu Mitra cold storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'lakshmi Narayanan cold storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISAKHA DAIRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA VEGETABLE FRUIT AND CHILLIE GROWERS COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAXMI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaya Balaji Cold Storage pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'CCL PRODUCTS INDIA LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '146']
[' Industry Name ', 'SHIVAIAH COLD STORAGE', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADHAVI COLD STORAGE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Prasanna cement', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANADRI COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'G S R COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRANATI COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri jayalakshmi ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Y R Ice Industries', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAMYA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SAI RAGHAVENDRA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sree Venkata Sai Raghavendra Cold Storage Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SINDHURI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sudhir enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'apex frozen foods limited', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '100']
[' Industry Name ', 'BMCU Asst Project Director DRDA YV Palem YV Palem', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S R MINERAL WATER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rama cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'THE KRISHNA DISTRICT MILK PRODUCERS MUTUALLY AIDED CO OP UNION LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOMALI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUDHA ICE FACTORY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Snowman logistics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIMITRA MARINE AGENCIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI DURGA KANAKESWARI ICE PALNT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'varalaxmi icecream parlour', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri kanaka mahalakshmi heritage', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA VENKATA RAMANA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Greenizon Agro Tech and Cold Care Private limited company', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'JL cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'HANUMAN ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ananda foods satya ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Siri Srinivasa Cold Storage PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRINIVASA ICE MAKERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ADITYA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'M Viswanatha naidu ice factory', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'five star ice Candys', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Ganesh Buttermilk point', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA FROZEN FOODS', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'S K industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ananda foods star ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madeena Fruits and cold storage', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J D ICE CUM COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ananda foods diamond ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GAMINI BHASKARA ICE AND COLD STORAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'RCRENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh decordicators', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara ice cateen', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUDHA PRASANNA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BASHA COOLDRINKS', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala ice factory', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LANKA COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI Balaji Ice makers', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai bala balaji ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S F C ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA MATHA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi ramani ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Ice and Cold Storage', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Godavari ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'shekhar water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'rythu bhandu cold storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI GANESH ICE MAKERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI KRISHNA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOLDEN ICEICEIICEICICEICEICEICE CREAM INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ZM FRUITS AND VEGETABLES', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'g ganesh mineral water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA REFING CHAMBER', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Limra Ice Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'coastal aqua pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '150']
[' Industry Name ', 'BHAVANI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DEVI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'LAKSHMI SRINIVASA ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Green asia cold storages pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI LAKSHMI ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'THE ANDRA BANK FORMERS SERVICE COPORATIVE SOCIETY LIMITED DHULIPALLA COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SURYA ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LOTUS ICE PROCESSING PLANT', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Satyaratnam ice cubes factory', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALA BALAJI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRIVALLI ICE FACTORY', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Divya Balaji Ice Factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Gayatri Ice Factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'Ananda foods himalaya ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI LEELA KISHORE ICE FACTORY -TIRUMALA ICE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VARALAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI JYOTHI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'KNR BANANA RIPINING', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'KRISHNA ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIAMOND ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Kondaraju Ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI DURGA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DHANA LAKSHMI ICE  COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VVS ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARR ICE  COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JYOTHI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA MADHAVI ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATA MADHAVI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUPRASANNA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ANANDA FISHERIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SATYA SAI LAKSHMI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA ICE CANDY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI DURGA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAAZ ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA JYOTHI ICE AND COLD STORAGE CAREOFF SMH ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI GOPIKA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'G S R VANA DURGA', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'satya prasad ice cream parlour', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ARYAN ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MOHAN ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAMSRITHA ICE MAKERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ARNAV FISHERIES PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRISTI FISH INTERNATIONAL', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PADMAJA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAINADHA ICE  CANDY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SAMANVITHA ICE  COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'GODAVARI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'THE KRISHNA DISTRICT MILK PRODUCERS MUTUALLY AIDED CO OP UNION LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI KRISHNA ICE PARLOUR', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARVIND INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SURYA ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRI ICE LINKS', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri sai krishna agro cold storage', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Rama kishore ice creams', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Jayalakshmi Ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI NARAYANA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'J B RIPENING COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GAMINI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ganesh ice factory', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'masthan vali cooling chambers', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SALIA ICE  AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Achiyamma  Ice candle unit', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KRISHNAVENI COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KAUVERY ICE PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'JAYA LAKSHMI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sabarinadh agencies', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWETHA FROZEN FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'AP ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHANKAR ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA DURGA ICE PARLOUR', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA  ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA LAKSHMI ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA SRI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI  VSP NAIDU BEVARAGES AND AQUA  INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BMUC MANDAL MAHILA SAMAKIYA', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vijayendra ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ms MD Akram', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vallabha Milk Dairy', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SIRI LAKSHMI ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Ilahi cool drinks', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI VALLABHA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'manilal agencies', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMA PUJITHA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'NUZIVEEDU SEEDS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE LAKSHMI ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Padmavati ice cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta Ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI ICE FACTORY - VATLURU', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'venkateswara ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sagar ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI  LAKSHMI SURYA CHANDRA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'CITY MINI ICE PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree veera venkata satyanarayana ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sai Mini Ice Plant', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SAI BALAJI ICE CANDY', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hani icecream', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pavani ice industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'subbaraju ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ALIVELUMANGA ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MANDALA MAHILA SAMAKYA MILK DIARY', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'shiridi ice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa ice makers', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHABOOB ALI ICE BLOCKS', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Kiran ice factory', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI MINI ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree jeeval ice industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI KANAKA DURGA ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'M S Sri Venkateswara Ice', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEERA BHADRA PRIVATE EXPORTS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '118']
[' Industry Name ', 'SRI SRINIVASA ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai srinivasa cold storage', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'CHAITANYA MINERAL WATER ICE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R Lakshmi reddy water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASADA ICE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Satya ice Plant', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HARI RAMA ICE PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIMNA ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'GIRI COLD STORAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VSK995000303', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'Shreeja Mahila Milk Production Company', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Jahnavi ice cream', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S PSK and Sons', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai rama Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DELUXE ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DRK ICE INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BMCU Kurabalakota', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S A R RIPENING VOLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SURYA SRINIVASA ICE AND COLD STORAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MEENAKSHI COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venumadhava Cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Noor cool drinks', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Krishna Cool Drinks', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'kailasakona enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KRISHNA MILK UNION', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Haritha dairy a unit of Haritha estates', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SATYA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI BHARGAVA COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Devi Srinivasa ice plant', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateshwar farmerswarehouse', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PISCES HONEY PROCESSING AND COLD CHAIN SOLUTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai shree milk food products', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHAYOGI LAKSHMAMMA COLD STORAGE', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRUJANA COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri venkateswara Foods Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HIMALAYA ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VASAVIRATNA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Rafi Banana fruit merchant', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA GEETHA ICE PARLOR', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Manikanta agencies', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka cold storage', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Banana cold Room', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI TIYYAGURA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PALLAVI ICE PARLOUR', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI WAREHOUSE', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi ice factory', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijetha friozen food', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Devi Fisheries limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '100']
[' Industry Name ', 'THAMBI ICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mah banana mandi', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAFETY COLD STORAGE', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'EVEREST ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'The KDMPMACU Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'TULASI COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'timotys delight', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Venkateswara Ice Parlour', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K S R Cold Storage Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'UTKAL ICE AND COLD STORAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAIRAMA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATESWARA ICE PARLOUR', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri chakra agritech', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISALAKSHI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KAMAKSHI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KDMPMACU LTD BULK MILK COOLER KATRENIPADU', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Sai Ice Factory', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sir gururaghavemdra ice factory', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sudha dairy', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LALITHA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai Sankar Cold storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI NOOKAMBIKA COLD STORAGE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DRL ENETERPRISES PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'js foods', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI ICE PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIVA GANESH ICE FACTORY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRAWANI COLD STORAGE PLTD', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KRISHNA ICE FACTORY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'K K STORAGES', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'pyda china venkataramana bros mfg ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vij aya tripura cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA AGRICOLD STORAGES INDIA PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANNADHATHA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GEETHA ICE PARLUOR', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Murali krishna flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI HANUMAN COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI MALLESWARI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'PRASANNA  SUPRAJA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Lakshmi cold storage', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI GAYATHRI COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GUNDLAKUNTA WAREHOUSING PVT LTD', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VSR COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kamadhenu coldstorage Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BSR SEA FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venakata Durga ice parlour', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'YELAMANCHILI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'LAKSHMI HIMALAYA COLD STORAGE LLP', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BUDDI COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lavanya cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHILAKALURIPET COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'PENTYALA COLD STORAGE LLP', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'CRYATAL ICE AND COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS VINAYAKA BEVAREGES', ' District Name ', 'Kadapa', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GMR cold tech industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI BALAJI COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'COLD CARE TECHNOLOGIES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VYJAYANTHI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MNAGA CHENNAIAH COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIGHNESWARA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI JAYALAKSHMI COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DNRICE  COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'KUMARI ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAVANYA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Siddartha Coldstorage', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI SARSWATHI COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI VINAYAKA ICE AND COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'TIRUMALA COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI IESWARYAMBIKA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai cool drink shop', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'agasteswara rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVAPARVATHI COLD STORAGE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'DADA PEER ICE CANDY', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VISION COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Paramount cold storage private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ycr cold storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri Dhanalakshmi industries LLP', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Triveni ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KURRI ANNAPURNAMMA GOVINDHI REDDY COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '19']
[' Industry Name ', 'SREE NEELAMPATI LAKSHMI AMMAVARI COLD STORAGE PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'COOL TECH REFRIGERATION', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JYOTHI SWARUPA EXPORTS LLP', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'GANGA MATHA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TARAKARAMA COLD STORAGE LLP', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI PATHAPATESWARAMMA COLD STORAGE LLP', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI MSR ICE AND COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bhavani Traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RYTHUMITHRA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VASAVI COLD STORAGE PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRIVALLI ICE plant', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai Lakshmi cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PRK FRUIT RIPENING CHAMBER AND COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Water RO plant', ' District Name ', 'Anantapur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA COLD STORAGE', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ICE COLD STORAGE', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'WISDOM COLDSTORAGES LLP', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HARITHA COLD STORAGE', ' District Name ', 'Krishna', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'AKSHAYA COLD STORAGE', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI MINERALS', ' District Name ', 'Chittoor', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Triveni Ice Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'msn milk dairy', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE VEERANJANEYA MILK FOODS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Himalaya', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh ice factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RABBANI COLD STORAGE', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AMARAVATHI AGRI TECH', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'K K COLD STORAGE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'pocha cold storage', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Himagiri cold storage', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Subramaneswara rice mill', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS Ramkri Cold Storage Pvt Ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'RENATI COLD STORAGE', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PPS RAJKAMAL RURAL FARMERS WAREHOUSE', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Guru Datta Yogesh Ware House', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Siddartha Agro Processing Unit', ' District Name ', 'Kurnool', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'FROSTY FROZEN  PRODUCT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'mahi agri enterprises cold storage', ' District Name ', 'Prakasam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JEHOSHAMMA ICE FACTORY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'Geeta ice candy', ' District Name ', 'Srikakulam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'unittester', ' District Name ', 'Krishna', ' Sector Name ', 'Defence and Aero', ' Activity Name ', 'Airport and Commercial Air Strips', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'VISAKHA MICRO MEASURES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Defence and Aero', ' Activity Name ', 'Manufacturing Assembly Integration and Testing of Defence and Aerospace Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADITYA TECHNO SOLUTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'Defence and Aero', ' Activity Name ', 'Manufacturing Assembly Integration and Testing of Defence and Aerospace Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'AAPYA TECHNOLOGIES', ' District Name ', 'Krishna', ' Sector Name ', 'Defence and Aero', ' Activity Name ', 'Manufacturing Assembly Integration and Testing of Defence and Aerospace Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bogalingeswara ayurveda nilayam', ' District Name ', 'East Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'UPENDRA HOMIEO PHARMACEUTICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI NADH AYURVEDHA FARMACY', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GREEN VISION SWARNA PHARMACY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GURU PHARMA', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DR EASWAR AYURVEDIC PHARMACY and RC', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sahara mana aarogya medicals', ' District Name ', 'Prakasam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Ayurveda Nilayam Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '59']
[' Industry Name ', 'Rishi Pharma', ' District Name ', 'East Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Santi homoeo Private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'NICD PHARMACEUTICAL PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Ayurvedic and Homeopathic medicine', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Porima Technology Private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Biotech Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Malladi Drugs and Pharmaceuticals Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '239']
[' Industry Name ', 'Vineet Life Sciences Pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '60']
[' Industry Name ', 'Vision Drugs Pvt Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '66']
[' Industry Name ', 'S L R Pharma Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Liquinox Gases Pvt Ltd', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'SESHA SAI CHEMICALS PRIVATE LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '19']
[' Industry Name ', 'MS SIFLON DRUGS', ' District Name ', 'Anantapur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '91']
[' Industry Name ', 'RS GAS PRODUCTS', ' District Name ', 'Kurnool', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk Drugs', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Maithili Life Sciences Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '56']
[' Industry Name ', 'Inventaa Industries Pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '108']
[' Industry Name ', 'KMTK LABORATORIES', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Ra chem Pharma Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '383']
[' Industry Name ', 'CKS pharma private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '22']
[' Industry Name ', 'Hetero labs limited Unit3', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'Hetero Drugs limited Unit9', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '30']
[' Industry Name ', 'Hetero labs limited unit9', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '30']
[' Industry Name ', 'hetero labs limited unit3', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '30']
[' Industry Name ', 'Aster Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '13']
[' Industry Name ', 'JAAHNAVEE LIFE SCIENCES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '88']
[' Industry Name ', 'frinze laboratories Pvt Ltd', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '24']
[' Industry Name ', 'GREENTECH LABORATORIES PRIVATE LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Bulk drugs Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '33']
[' Industry Name ', 'SRINIJA DRUGS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'ORCH LABORATORIES INDIA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'ENANTI LABS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'HYGRO CHEMICALS PHARMATEK PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'AZICO BIOPHORE INDIA PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'LAKSHMI ORGANICS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Dinakara Life Sciences Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'INCHEM LABORATORIES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'SYNTHOKEM LABS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'KEVYS GENERICS PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'AS BULK DRUGS', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'ARORA MATTHEY LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'INTEGRIN LIFE SCIENCE PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'PRODUCTION NEEDS GASES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'VSN LABORATORIES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'MAHI DRUGS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'CONNEX PHARMA PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Forel Labs Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'RAMPEX LABS PVT LTD UNIT 2', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'assurgen pharma PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Shimoga Health Care', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'SMS PHARMACEUTICALS LTD UNITVII', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Varams dental clinic and implant center', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'CHEMICALS AND ALLIED SUBSTANCES AND PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LIFE LINE FORMULATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drug Formulations', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Unisan Formulations private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drug Formulations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VERAS PHARMACEUTICALS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drug Formulations', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'koch organics', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drug Formulations', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'REVAT LABORATORIES PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drug Formulations', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SAFE FORMULATIONS private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drug Formulations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'srinivasa hospiatl', ' District Name ', 'Prakasam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drugs Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'THE SWASTIK PHARMACEUTICALS', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drugs Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Dr REDDYS LABORATORIES LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Drugs Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '426']
[' Industry Name ', 'ananya medical store', ' District Name ', 'Anantapur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Empty Gelatin Capsules', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vedamantra', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'HOMEOPATHIC MEDICINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'SSB HOMEOVITALITY INDIA CO', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'HOMEOPATHIC MEDICINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'UNIQUE PHARMACY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'INJECTABLE DOSAGE FORMS IN VIALS AND AMPOULES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI CHAKRA DIAGNOSTICS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'virupaksha medical store', ' District Name ', 'Anantapur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AINESH PHARMA PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'COASTAL LABORATORIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '28']
[' Industry Name ', 'ANDHRA MEDI PHARMA INDIA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'chemipar Bio science s', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'keshav industrial products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAXMI FURALS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'VISION BIOTECH', ' District Name ', 'Anantapur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Intermediates for Pharmaceuticals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '16']
[' Industry Name ', 'VAISHNO DRUGS AND INTERMEDIATES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of APIs and their intermediates', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'PHARMA CARE', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of APIs and their intermediates', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'NIFTY LABS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of APIs and their intermediates', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '266']
[' Industry Name ', 'SOARING SPIRITS PVT LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of Bulk Drugs and API', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '280']
[' Industry Name ', 'SYNERGENE ACTIVE INGREDIENTS PVT LTD UNIT III', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of Bulk Drugs and API', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '142']
[' Industry Name ', 'VERDANT LIFE SCIENCES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of Bulk Drugs and API', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '250']
[' Industry Name ', 'STYRAX LIFE SCIENCES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturers of Bulk Drugs and API', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '107']
[' Industry Name ', 'Centaurus Pharma Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'HARSHA INGREDIENTS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'JAHNAVI CHEM PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'SYNERGENE ACTIVE INGREDIENTS PRIVATE LIMITED UNIT II', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Sri Mallikarjuna Chemicals Pvt Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'KIRAN INDUSTRIAL GASES', ' District Name ', 'Kurnool', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Vandana life science private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturing of API (Active Pharmaceutical Ingredient)', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '120']
[' Industry Name ', 'IMIS PHARMACEUTICALS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturing of Ayurvedic Veterinary Medicines', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '125']
[' Industry Name ', 'vinayaka herbals', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Manufacturing of Ayurvedic Veterinary Medicines', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'West pharmaceutical Packaging India PvtLtd', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '62']
[' Industry Name ', 'SAI GLUCO PHARMA', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri nidhee pharmaceuticals', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CORNILEUS PHARMACEUTICALS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '83']
[' Industry Name ', 'Spectra diagnostic enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'TIL Healthcare Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '82']
[' Industry Name ', 'DOCTORS VET-PHARMA Pvt Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'GLR FLURO POLYMER COATINGS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'spansules formulations private Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAFFLES PHARMACEUTICALS', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'DOCTORS LIFE SCIENCES  India Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'RK DENTAL LAB', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Giyaan Pharma Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '36']
[' Industry Name ', 'SYNPURE LABS IND PRIVATE LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '25']
[' Industry Name ', 'SRI PADMAJA LABORATORIES LLP', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'CENTURY PHARMALABS INDIA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MANUFACTURING OF PHARMACEUTICAL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Raja chemical works', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'SAI DENTAL LAB', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma']
[' Industry Name ', 'Meridian Chemicals Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MFG OF VETERINARY DRUGS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'INTERNATIONAL HELATH CARE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MFG OF VETERINARY DRUGS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Valens Molecules private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MFG OF VETERINARY DRUGS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '42']
[' Industry Name ', 'PADMAJA LABORATORIES PRIVATE LILMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MFG OF VETERINARY DRUGS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '87']
[' Industry Name ', 'PADMAJA LABORATORIES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'MFG OF VETERINARY DRUGS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'APT LABS LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Pharmaceutical Formulation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Coastal Medicare Pvt LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Pharmaceutical Formulation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sterile Specialities InDia Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Pharmaceutical Formulation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAHYS PHARMACEUTICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Pharmaceutical Formulation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Artura Pharmaceuticals Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Pharmaceutical Formulation', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '53']
[' Industry Name ', 'TRIVENI FORMULATIONS LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Pharmaceutical Formulation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '38']
[' Industry Name ', 'Mediviz', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'R lab for the API and drug intermediates', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '19']
[' Industry Name ', 'new care medical centre', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'R lab for the API and drug intermediates', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA KRISHNA CHEMICALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'SPENT SOLVENTS AND SPENT MIXED SOLVENTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'HEALTHIUM MEDTECH PVT LTD formely  SUTURES INDIA  PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '78']
[' Industry Name ', 'SIVASIVANI SURGICAL COTTONS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Royal multi speciality hospital', ' District Name ', 'Prakasam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sanjeevani Health care', ' District Name ', 'Kurnool', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'Lifecare Surgicals', ' District Name ', 'Krishna', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHRI KANDULA OBULA REDDY HEALTH CARE PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '58']
[' Industry Name ', 'YOGASAI MANUFACTURES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Drugs and Pharma', ' Activity Name ', 'Surgicals', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'RDP workstations Pvt Ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Star battery works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RS AC technology provited limited', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sankar engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syam Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amara Raja Power Systems Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '147']
[' Industry Name ', 'sai telsa powertech', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Indwell construction pvt limited', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWATHI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satya Plastic Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Devi enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ASHAKIRAN WOMEN CHARITABLE SOCIETY', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'Xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HARIPRIYA TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Muneer electronics', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ganga Bavani electricals', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khader electronics', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'AKM Electrical And Automation', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'S L D S Auto electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI PAVAN SAI CAR CARE', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri adhitya industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LITTLE WOMEN CHARITABLE SOCIETY', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '38']
[' Industry Name ', 'KANTHI KIRANAM MAHILAMANDALI', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'Sri Krishna refrigeration works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'HINDUSTAN TECHNO IMPEX', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI MANJUNATH POWER CONTROLS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SR CONTROL AND AUTOMATIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Dilli internet', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUNRISE ELECTRICAL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA POWER CONTROLS', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Mubarak electrical rewinding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bangaru santoshi xerox and internet center', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DOLLAR COMPUTERS', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sivasankara engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SVP energy Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Micro electronics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya Sai electricals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mastanaiah electronics', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Swarna Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Laxmi Durga', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandana Corporation', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SHIRIDI SAI ELECTRICAL WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SONALI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'welding shop', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JYOTHY INSTRUMENTS', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya power systems', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LOTUS WIRELESS TECHNOLOGIES INDIA PRIVATE LIMITED-UNIT-II', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '62']
[' Industry Name ', 'pydimambha bricks', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'mk rao electricals', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri durga bhavani electrical works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGA ELECTRICAL SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Ramya Sri electrical automation', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ushodayam women charitable trust', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '38']
[' Industry Name ', 'vasavi refrigeration and air conditioning works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'smart automations', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Vinukondas mobiles and computer services', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dinesh Fabrications', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'GOWTHAMI  ELECTRONICS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Aruna industries', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Radha Tex', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KHAN AUTO ELECTRICAL WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BATFEED ELECTRICAL SOLUTIONS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'ENSURE WEIGHING TECHNOLOGIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electrical and electronics manufacturing products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nikhil digital shoppe', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electronic Gadgets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi ganapathi electricals', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electronic Gadgets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electronic Gadgets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Naidu Electronics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electronic Gadgets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Swathi mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electronic Gadgets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MSR electronics', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Electronic Gadgets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Kareem electronics', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'city mobiles', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'National Mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Basweswara cell point', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'prasad hardware service', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna internet', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'United telelinks timited bangalore', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '150']
[' Industry Name ', 'Abhiram studio', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vr mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ria mobile stores', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'harini cell point', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling of Mobile Phones Smart Phones Tabs TVs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flextronics Technologies India Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '391']
[' Industry Name ', 'RISING STARS MOBILE INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1026']
[' Industry Name ', 'Usman mobiles', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'satya electronics and mobiles', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Cel Tel Mobiles and Accessories and service', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adnan mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'colours mobiles accessories and services', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ATP mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'assembling of smart phone', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRS SOLAR SYSTEMS', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Assembling Solar Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RATNAGIRI AUTO REWINDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Battery Operated Vehicles Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'national scales enterprise', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Battery Operated Vehicles Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARAT AUTO ELECTRICAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Battery Operated Vehicles Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'shahin Batteryes sales services', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Battery Operated Vehicles Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'COASTAL POWER CABLES', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'CABLES AND CONDUCTORS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI MARUTI ELECTRONICS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'BISMISALLAH BABA NET CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'abhilash communications', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'Sri vighaneswara TV repair centre', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'sri srinivasa books and xerox', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'SRI RAMANA ELECTRICAL REWINDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'NUCLEUS SATELLITE COMMUNICATIONS MADRAS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Dish Antenna Manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '130']
[' Industry Name ', 'E PARISARAA PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'E WASTE MANAGEMENT', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '25']
[' Industry Name ', 'Mastan vali battery Electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NATIONAL ELECTRIC SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'kgn electrician works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Subhani radiator works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANTHOSH ELECTRICAl ENGINEERING SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SAI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EVEREST ELECTRICAL AND ENGINEERING SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'UNITED ELECTRIC COMPANY', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Indian Electrical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Leela Engineering Enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vijay Electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'Lalitha Electrical and Engineering Services', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thimmaiah Generator', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kesavarao foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Auto Electric Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA AUTO ELECTRICAL', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bala Tripura Sundari Devi Electrical Works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Abdul Khadar Jeelani Motor Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA electronics', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUGUNA AUTOMOBILES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shirdisai mechanics', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri veerabhadra electrical and rewinding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VERABHADRASWAMI ELECTRICAL REWINDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA ELECTRICAL REWINDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAI SRI SAI DURGA ELECTRICAL AND REWINDING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lalitha jyothi Electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'surya electrical motor rewinding', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'moon electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chittoor Motor Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai ganesh tv servicing point', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Hanuman motor rewinding', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTICALS AND ELECTRICAL MOTORS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lalitha techno systems', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electric lamp (bulb) manufacturing (small scale)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Varun AC SOLUTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Noor AC SOLUTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khan electricals', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Basha electronic shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'basha electronics', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RR ELECTRONICS AND ELECTRICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'general electricals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'victory ac works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vishnu electronics', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya electrical and rewinding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raju electrical works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vali rewinding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical & electronic items assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Wish VAS Enterprise', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL APPLIANCES ASSEMBLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'passionate engineers private limited', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL APPLIANCES ASSEMBLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri siva durga traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL APPLIANCES ASSEMBLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'suryateja electrical and rewinding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL APPLIANCES ASSEMBLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla battery and winding works', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL APPLIANCES ASSEMBLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LALITHA ELECTRICAL REWINDING WORKD', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL APPLIANCES ASSEMBLING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Voltactive power technologies pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARI HARA  POWER CONTROLS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri raja Rajeswari power lines', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PANAL AND ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'S and S Transformers', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRPower controls', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRK POLYMER', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'RAJA ENTERPRISE', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI SAI SRI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PENSAR ELECTRIC PVT LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'R K ELECTRICAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'DS Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS AtoZ electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'POWERON SWITCHGEAR INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jvh industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAKUNTALA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAGHAVENDRA ELECTRICAL WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PANDA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Ms B SRINIVASARAO POWER CONSTRUCTIONS PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'star pvc industries', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Items manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree doors', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Aditya Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'YALAVARTI ENGINEERING PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'narayana prasad electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai ram enterprices', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MILTECH EQUIPMENTS AND SYSTEMS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SWITCH GEARS AND FABRICATORS-   EXPANSION', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SAHASHA POWER SYSTEMS AND ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Modular Boxes and Metal Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai kumar industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lavanya enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SKR PVC INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'new visalandra electronics', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KUNDAN ELECTRICAL INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Hussain logistics', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi ganesh plastic industry', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electrical Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MUBEEN AUTO ELECTRICAL AND BATTERY WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BASHA AUTO ELECTRICAL WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURALIDHAR ENGINEERS AND CONTRACTORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri kanaka durga electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vinayaka suppliers', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Babu Electricals and Motor Rewinding Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Babavali Electrical works', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAVITHA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jani electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'uma electronics', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Garamma Talli Electrical and Rewinding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA VISHAKHA SOLAR POWER PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'The kavali welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA LAKSHMI ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI ELECTRICALS AND BOREWELLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sadhana Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Manufacturing of PSCC Poles', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Uma Maheswara Electrical Repair Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Subrahmanyeswara Electrical and Rewinding Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MONA ELECTRICAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Jyothi electrical works', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MBS Electrician', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shajid Lighting sound systems and decorations', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VINAYAKA ELECTRICAL WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'BABU AUTO ELECTRICALS', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shafi Electronics', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prabhakar welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri vijaya durga electricals works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAZAK WELDING SHOP', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Umar ac and fridge service center', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MOHAN WELDING WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRIHARI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jilan basha welding work', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri manikanta pvc pipes', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'ELECTRICAL WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dileep computers', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATASAI DURGA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naaz Battery Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ISARYA WOMEN CHARITABLE SOCITY', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '30']
[' Industry Name ', 'RATO COMMUNICATIONS AND ELECTRONICS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijayalaxmi ganapathi Xerox shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'virat electronics', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'keerthana photo studio', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pradeep photo studio', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'new sunraj electronics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'durga agencys', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'friends net', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pavan electronics', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Universal Computers and Electronics', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Electronics', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Taksha industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'EXHAUST FANs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ELITE APTRONIX', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'EXHAUST FANs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Auto Electricals', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Extraction of Lithium Ion from used Batteries and Supplying to the Battery Manufacturers for recyling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Auto Electrical Works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Extraction of Lithium Ion from used Batteries and Supplying to the Battery Manufacturers for recyling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Battery glass works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Extraction of Lithium Ion from used Batteries and Supplying to the Battery Manufacturers for recyling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kola Battery Works', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Extraction of Lithium Ion from used Batteries and Supplying to the Battery Manufacturers for recyling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sivaram battery sales and service', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Extraction of Lithium Ion from used Batteries and Supplying to the Battery Manufacturers for recyling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V POWER BATTERY INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Extraction of Lithium Ion from used Batteries and Supplying to the Battery Manufacturers for recyling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri rama automobiles', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electric Motors', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MARUTHI ELECTRONICS INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electric Motors', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', '3 Star switch Gears', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DURGA ELECTRICALS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DJ power solutions', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GMR switch gears', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VS power controls', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Technicals', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Anil Power Systems And Controls', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'V R ELECTRICALS', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Tsk electrical infra', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'G S R Electrical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'TVL electricals', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GOWRI ENGINEERING INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kumara Swami industries', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VIJAYA DURGA POWER SOLUTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VIGNESH TECHNOLOGIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYA SWITCHGEAR CONTTOLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Naveen electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'GM ELECTRICAL AND HARDWARE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIDYUT TECHNOLOGIES INDIA PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Electrical Panel Boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'AMARAVATI POWER CONDUCTORS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Power Cables user for electric transmission', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MVK TRANSFORMS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Power Cables user for electric transmission', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAI CABLE INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Power Cables user for electric transmission', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BMR INDUSTRYES', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacture of Power Cables user for electric transmission', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Amaravati Electronics Manufacturing Services Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'Sree Electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'DIVYA ELECTRICAL TRANSFORMERS AND SERVICES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Srinivasa Electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI BHAVANI TRANSFORMERS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SANGAMESWARA ELECTRICALS', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'WEBERINDIA INFRAPOWER OPC PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '15']
[' Industry Name ', 'Ms INCRED INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KENAV POWER SYSTEMS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SR INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HARITHA TRANSFORMERS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI JESTA TRANSFO ELECTRICALS LLP', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF DISTRIBUTION TRANSFORMERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI GANESH INDUSTRIS', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'INDPOWER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'Covai lakhsmi industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF ELECTRICAL GRINDERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Pavanasutha power enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF ELECTRICAL PANELS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVEEN ELECTRICALS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF ELECTRICAL PANELS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'AMARA RAJA ELECTRONICS LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Electronic components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '216']
[' Industry Name ', 'INCAP LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Electronic components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '72']
[' Industry Name ', 'LOTUS WIRELESS TECHNOLOGIES INDIA PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Electronic components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '84']
[' Industry Name ', 'excel radio frequency technologies Pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Electronic components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SAI RAMS INNOMATIONS INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Electronic components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'ZTT INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing Of Fibre Optical Cables', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '223']
[' Industry Name ', 'Amara raja batteries limited', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Lead Acid Batteries and Recycling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '657']
[' Industry Name ', 'new spark battery international', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Lead Acid Batteries and Recycling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms Jayasree Maruthi Alloys', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Lead Acid Batteries and Recycling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'ENERSYS INDIA BATTERIES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Lead Acid Batteries and Recycling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '39']
[' Industry Name ', 'HBL Power systems Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of Lead Acid Batteries and Recycling', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '304']
[' Industry Name ', 'RV LED INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'MANUFACTURING OF LED BULBS & FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NIKHIL KRISHNA SOLUTIONS', ' District Name ', 'East Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS']
[' Industry Name ', 'SWITCHGEAR MANUFACTURING COMPANY PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'manufacturing of switchgears', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'Sri Krishna Veni Rewinding Work', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of wiring harness products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gururaja industries', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Manufacturing of wiring harness products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'chaitra xerox shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Mobile phones TVs assembling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TVL enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Panel boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ambika Power Controls', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Panel boards', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gagan circuits', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Printed Circuit Boards Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'CETC RENEWABLE ENERGY TECHNOLOGY INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Solar Photovoltaic cell Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '107']
[' Industry Name ', 'AMEYA SOLAR AND SEMICONDUCTORS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Solar Photovoltaic cell Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SHAN SOLAR PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'SOLAR PHOTOVOLTAIC MODULE MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'SUNRAYS GREEN POWER SOLUTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'SOLAR PHOTOVOLTAIC MODULE MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SUNRISE SOLAR SOLUTIONS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'SOLAR PHOTOVOLTAIC MODULE MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'PRAYATNA DEVELOPERS PVT LTD', ' District Name ', 'Kurnool', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'SOLAR POWER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sree projects', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Bhargava Electricals', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SAIRAM ELECTRICAL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ELMECH', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HIMADHARA TRANSFORMERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'BALAJI ELECTRICALS', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SURYA ELECTRICALS AND WINDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Shalom electricals and industrial services', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVR ELECTRICALS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAY TRANSFORMERS', ' District Name ', 'Guntur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi venkateshwara industries', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sunflower Transformers Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SNAMZS ENGINEERS', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Madhura Power Mechs', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai electricals', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VIJAYA ELECTRICALS', ' District Name ', 'Prakasam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Raghavendra Transformers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SS ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BALAJI POWER SYSTEMS', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'Transformer repairing / manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Prshanthi Mandiram Women charitable society', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'voltage stabilizers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '38']
[' Industry Name ', 'skanda photo studio', ' District Name ', 'Anantapur', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'WIRED AND WIRELESS TELECOMMUNICATION SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'eenati vaarthalu broadcasting television networks', ' District Name ', 'Chittoor', ' Sector Name ', 'ELECTRICAL& ELECTRONICS', ' Activity Name ', 'WIRED AND WIRELESS TELECOMMUNICATION SERVICE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'International Auto Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kavitha engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIRAT VISWAKARMA ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI ADITYA AGRO INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkateswara engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kalesha general engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chamundeswari engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinarasimha welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pavansai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Jai Kisan Industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ENRICH AGRO SERVICES', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JAYA LAKSHMI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SWATHI AGRO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'gowri shankara engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SIVA SAI ARGO INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sivasakthi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKATA DURGA PLASTICS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAMBA SIVA AGRO INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI RAM INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basha engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AL MADINA AGRO WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'UMA WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SIVA NAGA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Abi welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Bhavani Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Frontline Engineering company', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Amarnath agricultural implements', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI AGRO INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'V S HYDRAULICS AND ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'vijaya Lakshmi engineering', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VARALAKSHMI TURNING AND AGRICULTURAL IMPLEMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI MANI ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Markandeya Puncture Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri maruthi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bismillah Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LEADER AGRO ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'surya engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KONERU AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MAHESH AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vishnu Priya Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KANAKA MAHALAKSHMI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AZAM ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara industrial works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sree Ramtek Engineers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MS LAKSHMI GANAPATHI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'BAPDADA AGRO INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI RAMA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prasanth Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PARDHASARADHI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VENKATESH CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Subhahani welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LILLY ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'M A N AGRO INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI VENKATESWARA ENGINEERING WORK SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HONNUR ENG WOR', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganesh Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Vijaya krishna iron stores', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R M Agro Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Surya engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P Chandrasekhar Naidu Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kogar Electronics', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GUNDALA TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharath engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE DEVI AGENCY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE SEETHA LAKSHMI ENGINEERING WORKSHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DEVI SMALL SCL INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS Sunder JCB works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'geethanjali enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAM ENGINEERING WORKSHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI TIRUPATAMMA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri dhanalaxmi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'prabhu engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Rasul Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAFI AGRO ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'veerabadra welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LEELA FLOUR MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Riteset industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ritset Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Sri visakha Agro Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mahaboobsubhani Welsing  works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ANWAR WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MADHEHA ENGINEERING AND WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'weld mesh', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BALAJI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Manjunatha electricals and workshop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaya lakshmi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rohini Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURAJ ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'jai Bharati Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Siva engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M A N AGRO INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri sai vishaka engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri gayathri prabha agro industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Basha welding and Turning works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Friends Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kusuma Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NOOR ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'OM SRI CHAYA KRISHNA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHAYA KRISHNA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bhaskara Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Krishna Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivasa auto Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI BALAJI ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'LM RICE TEC', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'L B AGROS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vijayadurga turning works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri jyothi engg and electrical Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ganapathi spun pipe company', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SPHOORTHI AGRO WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hari engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SREE LAKSHMI BORE WELLS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sRI MARUTHI AGRO INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAMBA SIVA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SRINIVASA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vikranth tractor works', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K L RAJU FOUNDRY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS SRINIVASA AGRO INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri balaji engineering work shop', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI SRINIVASA ENGINEERING WORK SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'saveera industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA IRON AND HARDWARE WELDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOLDEN AGRO ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI  VENKATA RAMANA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sali sailesh industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri raghava agro engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kanaka durga engineering  works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Kalikadevi engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI DURGA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE SIVA JYOTHI AGRO INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'JEELANI INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BRINDAVAN ENGINEERING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Agriculture Implements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramasai Airbreak Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Air Pollution equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'stallwart', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri padmavathi electro plating works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sarojini Traders', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hasini Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanlakshmi aluminum works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri uma aluminum works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'dream home aluminium', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Dolphin door windows', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri seetharama agencies', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALUTECH INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ALUMINUM PVC FABRICATION', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '27']
[' Industry Name ', 'sri kanaka durga welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLA BODY BUILDING', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SMS welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Yusub body building works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI WELDING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karimulla Body Building Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi teja welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI NARASIMHA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nabirasool najeer suto realy works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shaik khaja welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA PADMA DESIGN WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mythreya electrical works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai durga rolling and shutters and engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ganesh iron design shop', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Techno Electrical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai manikanta welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sadvi Sri engineering and trolley generator repairs', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vinayaka engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri ayyappa engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'madheena arc welding transform', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MDR engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ISMAEL ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Karimulla engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kalaiah Welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Niranjan Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA WELDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JR Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri siddhi vinayaka welding work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed ali engineering body building works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SYED MAHABOOB SUBHANI ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakanth Vattikuti', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI ENGINEERING  WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BDM Weld Technologies', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Bhavani Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'P vasudeva chari work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahaboob ali engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Angel Welding Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ambhika welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'maruthi wlding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DBN ENGINEERINGS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMBIKA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Laksmi Narayana Engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri murugan wielding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri veeranjaneya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BHAVANI ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'anil engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswarlu turning works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sarada friends engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gouse mohhidin welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MJS WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Navya Sree Welding Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna engineering', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S MAHABOOB BASH', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya General Engineering work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sayamma Welding Shop', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mosheya Foundry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'jai nagendra general engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adham Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V RAHIMAN', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHABOOB SUBHAN ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Modern Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sita Rama arc welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hari Oxygen', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SARADA WELDING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anusha engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri uma shankar engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K S Logan', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Revathi Welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri VENKATA LAKSHMI Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dadapeer Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Devi design and welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chiranjeevi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Monark furniture works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KORRA RAMOJI RAO WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TULASI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Suseelamma Welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri ramakrishna industries', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkatanagalakshmi welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA DURGA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NAGOORVALI ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Veernjayaneya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'A Satya Narayana', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWARA WELDING SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'varasiddhi vinayaka welding fabrications', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'keerthi welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moula welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rienkeshavachariengineeringworks', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jayalakshmi engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Arc welding', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subbarao Welding Shop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yashin welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venu welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYADURGA SAU ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G S Balaji welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aliya Welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KADALI VEERANA WELDING SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshminarashima grill works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri grill works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Tarun Pavani Gas And Arc Welding Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROSHINI WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHASKAR ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sivalingeswara welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Durga Engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'abdulaziz grill works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob basha welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Biram Lakshmi Narayana  welding', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI JANAKI ENGINEERING', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yaggireddy balachandra welding', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA SHANKAR ARC WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ESha engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Janardhanarao welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI LAKSHMI IRON DESIGN WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'BABU MECHANICAL WELDING SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai Design works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai ganesh Weldon works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'janta welding grill works and puncher shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Sai engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi narashimha welding and grill wirks', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naga sri sai welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla  super engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Samreen Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KULLAI SWAMY WELDING SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramana Welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'solar engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M N welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MOON STAR ENGINEERING INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KARR ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'arun enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva Shakthi Dozers', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kiran Kranthi engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Indian Grill works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GK WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SARDAR ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vinayaka Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DA ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai radha Krishna traders', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M D engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MOGAL LAL BEIG ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'THE BEST ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JLR ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya Tulasi Welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SK JILANI BODY BUILDERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad Gril Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Maridimamba Welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHIVA SHANKAR GRILLS WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'dhanunjaya engg works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Srinivasa Durga work Shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi Engg works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Lakshmi iron works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subbarao Arc welding', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lalitha Engineering and Motor Rewinding', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Kumar Welding Shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYADURGA SS ARC WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA ARC WELDING', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MAVULLAMMA WELDING SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad Engineering Works sadeya industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismillah Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dasari L Sadasivam', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMMIREDDY ARC WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI KANAKADURGA ARG WELDING AND DESIGN WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Baba welding  and engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Durga welding shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sakthi welding', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya Durga Welding Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Air filling machine', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SA Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Padma lathe works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'krishna engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai Manikanta Welding', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAMBASIVA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'varasiddi industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW AJANTHA GAS WELDING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Nagamani Design Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KOTESWARARAO WELDING SHOPS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sravani welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ravi welding', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI LAKSHMI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AJANTHA GAS WELDING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'S BASHEER WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mohammed Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAGHURAM DISEL GENERATE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi General engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SELVAGANAPATHI ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Nookaraju Welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYA FABRICATIONS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree venkatavsivakrishna welding', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KGN WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Sri Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Bhavani Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'jai sri ram workshop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'abdul khuddus arc welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Chandra Welding Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAI BHAVANI WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Rama Abhaya anhaneya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MOHANARAO WELDIND SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara welding', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JESUS WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMMIREDDY ARC WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MOHAMMAD SALEEM ENGINEERING WORKSHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shahit engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KGN welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ali brothers welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ajamathulla welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P S V ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VISALAKSHI WELDING WORK SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI WELDING AND GRILLS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Hindustan welding and turning works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JAGA RAO WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MOHAN WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Hari Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'someswara Swamy engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAMANA REPAIR WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkatewara Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'gaphariya welding work', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MODAMAMBA WELDING WORKERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai Durga welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Santhamani welding and Electrical works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VUJAYADURGA GASCUTTING AND WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramakrishna welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NAVA DURGA TRACTOR WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SULTHAN TINKARING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Fabricators', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'A NAGARAJ WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mallikarjunachari welding workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SIDDHI VINAYAKA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRESTIGE INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vemavarapu siva Satyanarayana welding work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Naidu Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GOVINDAN N C', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srimallikarjuna modamamba engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI BHAVANI FABRICATIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nooka apparao welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NIMRA ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri anajaneya  welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata sai Durga engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SNEHA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Dhana welding work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ranganayaka motor works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KOTADURGA WELDING WORKS AND MEATIRIAL', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA WELDING WORK', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLAH ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nafiz spot welding', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VENU WELDING SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srikara fabrications arc welding', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai durga arc welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Chaitanya welding engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'simhadri engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'DURGABAVANI GAS AND ARC WELDING AND TINKARING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chandramohan weldings', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri modhamamba beeruva shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri tirumala engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRB WELDINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'minar welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Raja welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARI SORAKAYALA SWAMY TURNING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Immanuel welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA BRAMHENDRA SWAMY PRASANAM WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanakadurga Bavani Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kankamaha lakshmi engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M M INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Srinivasa hydraulic and engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'yamani devi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Engineering Grills', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Susil Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Jai Hanuman Arc welding Shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkata siva maha lakshmi engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree lavanya engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AKRAM ENGINEER WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GUNA WELDING', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chodamambica arc welding', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SS FABRICATIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkatapathi Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V Mubarak', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gopal welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAY DURGA WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'swarna engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai engineering workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Prakash Welding Fabrication Work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ramulu welding work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tarakarama Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'siva sankar Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SHANKAR ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SIVA DURGA WELDING WORKSHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANESH WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'N ANANDA ACHARI welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga bhavani engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'suresh welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUMAR ENGINEERING AND MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narayana Welding', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagarjuna Chary', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkateshswsra welding work', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkata Vinayaka arc Welding work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri veeranjaneya general Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Dhana gayithri Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ADI LAKSHMI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRATHIBHA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'v s jagan steel works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri lakshmi Venkateswara Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balaji engineering works rayalapeta road', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree aaiji engineering work', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANITHA WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DURGA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramu Arc welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJESWARI WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'grb Fabrication and erection work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kousar Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'S K WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha fabrication works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI KARTHIKEYA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Manimanta Engineering workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Balaji engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Lakshmi Designing works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'jai Hanuman welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vasu  engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAY ELECTRODES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Krishna Veni Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhavyasri welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramanaiah welding shop', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'seetha ram welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Durga turning works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'pas', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CHOWDESWARI ENGINEERING WORK', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ratna Traders', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Pydiraju Fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vikram engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sathyam general engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sateesh engineering welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SAI SANTHOSH WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGN Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S babjan welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA SRI STEEL FABRICATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raja Rajeswari welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PAIDIMAMBA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prasad foundry works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GULF APPLE ENGG WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Suryakumari Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri raja engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'madhina agro industry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ALL HADID GRILS WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAIDEHI VALLABHA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MURUGAN BODY BUILDERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'AMMANA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri rama  Gopala Krishna engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'OM SRI SAI ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TS RAVI FABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'durga bhavani welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SBN welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkatadurga padmavathi engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Nageswara rao welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HKGN ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'himabindhu welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri durga welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'work shop', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkatalakshmi Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hasen automobiles', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GANESH MOTOR WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Bhavani welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Lakshmi Ganesh Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKATA DURGA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara old iron shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Hussain Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA ENGINEERING AND FABRICATIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Kranthi ENGINEERING works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SHIVA DURGA ENGINEERING AND FABRICATION WORKD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri padmalaya engineering work', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI KALIMATHA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ANJANEYA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vikranth industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Venkateswara Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'POTNURU KANTHA RAO REPAIR AND WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S ANWAR BASHA ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'JOGARAO WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'USHODAYA ELECTRODES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Vigneswara Auto engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'maa sidhdhabhairavi', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI NARAYANA WELDING WORK SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Uma shankar welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHOYAB WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vasu welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KMS WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Engineering Works', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'vemavarapu Ramesh welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARTICLES MADE OF MDF BOARDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARTICLES MADE OF MDF BOARDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bismilla tyre work and mechanic', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh auto mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MGS iron grills and articals', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A1 Dc  Electrical works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'tirumala engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhargavi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ASSEMBLING OF E-RICKSHAWS AND ELECTRIC THREE WHEELERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SS tyres', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Assembling of wheel chairs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MD Cars consltunacy', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'PALLAVI ELECTRICAL REWINDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Supreem Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'star refrigeration works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI LAKSHMI Refrigerationandairconditioning works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'HANUMAN GARAGE', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'abeeb engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SULEMAN RADIATOR AND GAS WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Happy refrigerations', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Marine engineering enter prises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'PAVAN ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'vizag filters', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sri DHANALAKSHMI battery and electrical works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Frigdex Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'AKBAR ALI DISPOSAL', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'akhbar ali disposal', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SIVA SAI BODYBUILDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'vijayanad auto mechical en', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SHAMSHEER CYCLE SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'PA1 TWOWHEELWR MECHANIC', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'AG mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'lakshmi tharun vehical spare parts and water servicing center', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Lakshminarayana engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'YEDUKONDALU AUTO MECHANIC WORK', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sri Venkata Sai Lakshmi Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sri Kanaka Mahalakshmi cycle shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'cycle shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'JAHANGER CYCLE SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'kala engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI VENKATA RAMANA DISEL SERVICE', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Automobile fuel outlet (only dispensing)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ARUNA DEISEL SERVICE', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Automobile fuel outlet (only dispensing)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Diesel House', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Automobile fuel outlet (only dispensing)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Babu Diesel Service', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Automobile fuel outlet (only dispensing)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA BHAVANI CEMENT BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Automobile fuel outlet (only dispensing)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mabu auto garrage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD BODY BUILDINGS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARISHMA BODY BUILDERS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'star diesel works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI MECHANICAL WORK', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hussein automobile services', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'FIROZ REBORING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAXMI MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bismillah auto garrage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syamala Motors', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mechanical shop services', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Salimkhan mechanical work', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SITARAMA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI SURYA BODY BUILDING', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'YASEEN BODY BUILDING', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI BALAGI MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara auto indusries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sravanthi Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naga Sai Coach builder', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA BHAVANI COACH  BODY BUILDING', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'General engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RDR INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMANA MOTOR WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI WHEELS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'samba auto garragr', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABDUL KHADAR JEELANI MOTOR WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa motor works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai stickering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mahaboob bhasha', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sravan kumar garage', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai durga motor works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DAIVA KRUPA WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri Shiridi Sai Mechanical Work Shop', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkateswara lorry body labour works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri vijaya lakshmi body builders', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KGN Auto works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani Auto Garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramalakshmi  mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Bismillah Body Building Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'REHMAT GARAGE WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Jaya Lakshmi Body Building Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SRI SRI PAIDIMAMBA BUS AND LORRY BODY BUILDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'New Standard Engineering  Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Salam gari Foundry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'nazeer turning work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRINU VEHICLE REPAIR CENTRE', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prabhu Body Building Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul wahed repair works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh auto mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mahammad Ali Auto garage', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharat Bus Body Building', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'AL TAWAKKAL AUTO ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI DURGA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani auto engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASARIPOLARAMA BIKE MECHANIC SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jaya Sree Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SUBRAMANYESWARA BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARUNA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismillah body building works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi body building works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri vasu engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'navarang auto multi car services', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RK ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanka Durga Motor Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'TAJ ENGINEERING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'krupa engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Navarang industries', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KSSBY BABU TINKERING AND LORRY BODY WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai Tractor and General Repairs', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siva sai welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sai Krishna enginner works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'shafi general engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kishore engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI DURGA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'AYAZ AUTOMOBILE ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'APSAR AND NOOR LORRY AND BUS BODY LABOUR WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'HkGN lorry body building  labour works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SLV INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'A1 Garage', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vinayaka engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SMA lorry body labour works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 's Sayed Basha lorry body works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Varasiddi Vinayaga Lorry Body Builders', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'naveen kumar engineering and automobile works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'AUTOMOBILE VEHICLES BODY BUILDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VARADAYINI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'BIO GAS MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'PAQUES ENVIRONMENTAL TECH I P LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'BIO GAS MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '33']
[' Industry Name ', 'carpenter work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Block making for printing without foundry (excluding wooden block making)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Manikanta Flyash Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Geo strong fly Ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Babu Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Suvarna Bricks Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kalyan cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vinayaka Cement Brick works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'venkata sai durga flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'pydimambha bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'IYANTRA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Sri venkateswara cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Venkateswara cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Brickfields (excluding fly ash brick manufacturing using lime process)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'AR steels', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Bright Steel Bars', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mahavir Casting', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'GLOBAL METALLURGICALS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'prabhu moulding and engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA CHAITANYA INDUSTRIES - UNIT 2', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI SAI BHANU CASTING EXPANSION', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Noahindia Engineering private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '33']
[' Industry Name ', 'PADMAVATHI  ALLOY  STEEL CASTINGS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI KRISHNA CHAITANYA INDUSTRIES - UNIT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Casting of ferrous and non ferrous metals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'NCL INDUSTRIES LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CEMENT PANELS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '36']
[' Industry Name ', 'SRI SRINIVASA CEMENT WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CEMENT PANELS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THE RAMCO CEMENT LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CEMENT PANELS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '58']
[' Industry Name ', 'LV PRASAD PREFABRICATED CONSTRUCTIONS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CEMENT PANELS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIMINKO ENGINEERING AND CONSTRUCTION INDIA PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CEMENT PANELS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Chandana trades', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CEMENT PANELS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE GANESH READY MIX', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CONCRETE PLANKS MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'J k Lifters', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AK cranes', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Vijaya Lakshmi Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KIRAN', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'lavanya constructions', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KCP COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'MRS EQUIPMENTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADHAVI INDAUTO COMPONENTS PVT LMT', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Construction Machinery And Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'jk construction', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CONSTRUCTION OF PRE ENGINEERED BUILDINGS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Nithin sai constructions', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CONSTRUCTION OF PRE ENGINEERED BUILDINGS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KAMAKSHI ROLL FORM INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CORRUGATED METALLIC COLOUR COATEDROOFING PROFILE SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Corrosion Protective coatings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CORRUGATED METALLIC COLOUR COATEDROOFING PROFILE SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS ROOFTEC INFRASTRUCTURE PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CORRUGATED METALLIC COLOUR COATEDROOFING PROFILE SHEETS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri Lalitha roofing industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'CORRUGATED METALLIC ROOFING PROFILE SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI COTTAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Veranjaneya Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI KANAKA DURGA IRON MERCHANTS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sri Vigneswara Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'RAJAYALAKSHMI  ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'GODFATHER INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Murthy saw mill and timber depot', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'BATHALA NARASIMHA RAO', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Dust Control Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ']
[' Industry Name ', 'lakshmi store mill', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Dust Control Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRESSWELD EQUIPMENTS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jameer Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Syed Fabrication and Iron centring works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRUJANA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'pathuri venkateswarulu', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PSR Building Systems', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Friends enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SSK ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anjaneya Work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Annapurna Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAJA BEGUM DESIGN WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Rama Small Scale Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Lakshmi Srinivasa Small Scale Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Veera venkata satya sai engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi durga design works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Prabha engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Dhanalakshmi Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Soughandhi Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'International Industries Foundry and Moulding Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI KANAKA DURGA GENERAL ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madeena engineer works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VEDHA ENTECH INDIA PRIVATE LIMITED EXPANSION', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '129']
[' Industry Name ', 'Lakshmi Agriculture and Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata durga engineering WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMA KRISHNA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMU LATHE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURESH ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manaswi arc and gas welding', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya durga auto mobiles', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Basaveswara and Kanaka Durga Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'satyadurga electrical  mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rasheed design works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V Febd', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Babu engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOWSE HAFIZ ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata durga engineering and general works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRAJAPATHI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Bhasakara Industries  and Foundry Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gayathri  Engineerings', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'VARUN ENGINEERING AND FABRICATION WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Welding works shop no 29', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Modern Welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sarkar Hussain Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAMBABU WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI MAHALAKSHMI ENGINEERING AND FABRICATORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'Bhavani Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Balaji engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Babu Engineering', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Industrial Radiographs Coporation', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'V K engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Dhanaraj engineering enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SHANKAR HYDRAULICS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'FERRO ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'AMRITHA UNIVERSAL SHIP CARE', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'AR RAZZAQ TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MVR TECHNOLOGY', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'COMPRESSORS AND CONTROLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'SULEKA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '34']
[' Industry Name ', 'Promech Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri Srinivasa Engineer Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI RAM INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Fluid Power Engg', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering and fabrication units', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Sales and servives', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Storeit Services LLP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '24']
[' Industry Name ', 'RUDRA MAGNETS LLP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'MODREN ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KJR READY MIX CONCRETE', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE ANJANEYA RMC', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'IRI TECHNICS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KONDAPALLI CONVEYORS AND ENGG PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Hanuman turning works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ACTIVE POWER SYSTEMS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PNOOR AHAMED MSBAHAVANI STONE CRUSHER  782OFFICE STREET BKOTHAKOTA', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'GEA GBR ENERGY SYSTEM INDIA LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '49']
[' Industry Name ', 'AERO PISTONS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI MAHADEV INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ENGINEERING GOODS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NAVADURGA ENGINEERING AND AMP WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla Auto Garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sahararadiator works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyanarayana auto reboring works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVAB ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik suhani mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI HIND ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'janibasha engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai sai srinivas diesel service', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramana diesel engineers', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASIF ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik jilani kutch plate works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ibrahim engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASIF RADIATOR WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SARADA ENGG WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AH Lorry Mechanica Worka', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHAVANI MATHA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri manjunadha polymers', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROOPA ENGINEERING WORKSMAN', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durgaprasad engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'v S Reconditioning works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHAFI AUTO SPRINGER RECONDITION WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Milano engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Saleem Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMACHANDRA MECHANICAL ENGINEERING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE ENNAR ELECTRICAL ENGINEERING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vikram automobiles', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAITEJA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Precision Auto products', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BISMILLA ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Pavan Sai Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri hanuman motor works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jilan welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jayalakshmi Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayalakshmi Engineering and rewinding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SESHA SAI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri lakshmi engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya Rewinding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aditya civil engineering job works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vara siddhi vinayaka water service and motor repairs', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanaka Durga welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajeswari shed works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri saibaba industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri kanakadurga automobile engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Chand basha iron works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Turning Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Taniya engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sairam engineering drilling and taps divers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aruna Diesel House', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI RAJA MOTOR WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shanthi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anil auto Garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VEERABHADRA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Lakshmi lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vara lakshmi engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI INDUSTRIAL LATHE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tanmayi Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MUBARAK AUTO GARAGE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'daiva vara prasad rao industrial works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DG Bhaskar', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI CHAITANYA LORRY BODY LABOUR WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRl PAVAN TEJ TECHNOLOGIES 1', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'padmaja diesel house', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Joseph Lathe Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijayalakshmi engg works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G R ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri lakshmi venkateswara general engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REDDY AND GANESH REDDY ENGINEERING', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJYALAKSHMI EMGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASSOCIATED ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Nara Hari gas works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata sai automobile engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajesh engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'siri chandana engineering corporation', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI DURGA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Mahalakshmi Industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rama agro industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA ENGINEERING WORK', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raja Rajeswari Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna Devaraya Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HARITHA ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara welding shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Guru Engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'khader automobiles', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai Teja turning works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PADMA ENGINEERING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri Trinada Desial Engine Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'siva durga engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SARADA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHEKSHAVALI ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'OHM SHAKTHI ENGINEER', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri ganesh nookambica engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ganapathi oil mill', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PVR ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kamakshi engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri vijaya ganapathi engineering and general works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri sai durga engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vara laxmi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vishnu engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijya Durga stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RATNA ENGINEERING CONSTRUCTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Mahalakshmi engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM VIGNESHWARA WOOD PLAINING MACHINE AND DESIGNING', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADEENA AGRO ENGINEERING WORK', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHAPARALA RAJESH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jyothi Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'H And One Engineering Solutions', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ISOTOPE QUALITECHS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri chitti automobiles', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'AL KAREEM AUTOMOTIVE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRATHAP INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '135']
[' Industry Name ', 'Ramakrishna engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJEE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'Rustum iron works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SAI ENGINEERING AND FABRICATORS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Kalyani Marine and Industrial Engineers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai baba fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Janikiram engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Srinivasa Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Bismillah welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dasari Damodara rao', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi ganapathi engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi naraya engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MRG Work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Murugan Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Electrical and Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Satyadevi Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sai Naga Supriya Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HBP Engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAYYAD ALI', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maheswari Engineering Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VKN construction', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Devi Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI DEVI  INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata Satyanarayana industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI INDUSTRIES FOUNDRY', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Santhi engineering work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ya Gouse Auto Electrical Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA WOOD and WELDING Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'G K ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sree krishna engineering and construction company', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'J B ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DELMET COATINGS PRIVATE LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'AKSHAYA POWDER COATINGS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Srinivasa engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TEJA HAYAGREEVA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A N TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI KASI ANNAPURNESWARI ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Navayuga Engineering company Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'VMS NIRMAN PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'V S ENGINEERING PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '64']
[' Industry Name ', 'VASANTH WELD INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Venkateswara Head Seating Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nandini Spun Pipes', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CHIRANJIVI INDUSTRIES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'SRI MANJUNATHA WIRE MESH', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS BISMILLA ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RISHI FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FABRICATED STRUCTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'DELTEK POWER LINES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FABRICATED STRUCTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KOGANTI STEELS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FABRICATED STRUCTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI SAI PRADEEP ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FABRICATED STRUCTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GVR ASSOCIATES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FABRICATED STRUCTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'surya engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FABRICATED STRUCTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Katyayani Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication and Galvanization of Steel', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi ganapathi engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication and Galvanization of Steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms Sri venkateswara aluminium works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Yamuna Aluminium Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TRINITY ANODIZERS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI DWARAKA METAL COATS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri sita rama ss and ms welding work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Hari haranadh metal industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Vijay Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SIVA SAI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srivani industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of aluminium products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Afsheen Auto Electrical and Welding Shop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jyothi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagur welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIDURGA WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'karyasidhi ganapathi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA WELDING AND HARDWARE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MANIKANTA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA WELDING SHOP  WELDING SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sk pani welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kalee mulla', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOPI KISHORE WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 's jafervali', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MODAMAMBA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri modhamamba welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Ganapati welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Satya sri parapeswara upvc windows and doors', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI MODHAMAMBA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ayyappa welding Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SAW MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi design works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMBABU WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raghu welding and fabrication', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Durga Welding Work Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAINATH IRON AND STEEL FABRICATING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Taj welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raju and suns welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Designing works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BELLAGREEN WOOD PLASTIC COMPOSITES PRIVATE LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Doors and Windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BK Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Heavy Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ZETKO-DKV TECHNIK INDIA PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Heavy Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri srinivasa metal industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Heavy Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'S V ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication of Heavy Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SULTHAN ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nazeem mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI ENGINEERING WORKS AND FABRICATORS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SYAMINDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Lakshmi Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'R S Engineering', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ALLIANCE INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satyanarayana Engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'YASASWINI ENGINEERING  ELECTRONIC SYSTEMS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padamavathi Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Maruthi Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'JAGAN ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai kalyani fiber works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'ZENITH ENGINEERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Harris industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'RR ENGINEER COMPANY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'DURGA SRI RAGHAVENDRA ENGINEERING SERVICE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi iron mart', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVAS RAO PATNALA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVASARAO WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Manikanta Welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ASHOK INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'DHANALAXMI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NAGA SATYA SAI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATARAMANA GRILLS AND FABRICATION WORKS AND SALES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VARMA CONSTRUCTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'sri veeranjaneya WELDING SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DIVYA KRUPA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanaka Durga Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva SaiLakshmi Ganapathi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANIKANTA STEEL AND IRON WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S G industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PMG STEELS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Sri Bavani Sivalakshmi Ganapathi', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sivalakshmi ganapathi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAISHNAVI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIMAGE Dutta services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAYATRI FABRICATION WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHABOOB SUBHANI TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AJ SIGMA ENGINEERING WELDINGWORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BISMILLAH WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K G N FABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'STAR ENGINEERING WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIGMA STEELS N METALS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fabrication Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'EVERGREEN FILTERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Filter Mfg', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri swathi purified drinking water', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FILTRATION EQUIPMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'FX SAFE AND SAFETY PRODUCTS LLP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Fire extinguisher', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KANAKAMAHALAKSHMI FLOUR MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FLOOR DECORS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'D pedda kullayappa', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FORGING OF FERROUS AND NON FERROUS ALLOYS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Neels Forge Products   Engg services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FORGING OF FERROUS AND NON FERROUS ALLOYS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'VIGNESWARA FIBER MOULDS INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'FRP Components and Moulds', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SOVEREIGN GAS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GAS INSULATED SWITCH GEARS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara rao gas works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GAS INSULATED SWITCH GEARS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kusuma Priya gas works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GAS INSULATED SWITCH GEARS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'star engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi ganapathi mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kanigiri pullaiah lorry body building', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri karthikeya auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHAITANYA BODY BUILDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ashmath auto guarrage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bismillah black  smith works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'new bethesta plastics', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yellamamba Engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SYAMALA ENGG WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASVIK DESIGNER TILES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA BHAVANI ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Mailara Lingeswara Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI KANAKADHURGA MANIKANTASAI FOUNDRY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JAYARAM AIR COMPRESSOR GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Riyaz computers', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sujith enterprises', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Master Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE VARAHHAS TECHNOLOGIES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'PRUNA INDUSTRIES PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri Siva sakthi electrical and rewinding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAGAMANI AUTOMOBILE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Body builders', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Rama Vijaya Durga Welding Work Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Surya balaji welding and wood works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Syed baranuddin engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pavani Durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala Disposals', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Vijayalakshmi Tractor garage', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Praveen Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mahaboob Subahani Auto engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jai Veerabhadra Engineering  works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'construction equipment', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri ramalingeswara enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA MANIKANTA SHEET METAL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'grand radiators', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Harsheya Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Noor Mohammed Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mahaboob Basha Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Khadarbasha Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Venkateswara Tractor Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Munaff Turning Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkatasatyanarayana Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Padma Engineering Enterprises', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'GENERAL ENGINEERING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Veera Venkata Durga engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gayatri engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MK AUTOMATIONS AND FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri verabramhendra industrial work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Navya sai hemanth welding and designing works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANJI BABU CAR SPRAY PAINTING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VAMSI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'keerthi sri grill  works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMA WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi chenna Keshava grill works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara engg works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA FABRICATION AND ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA RAMA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOMENDRA LATHE WORK', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RK SAI SRI WELDING SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'v lakshman rao', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree venkateswara radiator works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA VENKATA SAI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TIRUMALA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Tirumala Welding Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nawaz engineering and welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Simhadri work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri engineering and fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI SHIVA RAMA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Asian engineering and fabrication', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIVEK ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Neekakanteswara engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'General Engineering And Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PARAMOUNT BUILDING SOLUTIONS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Heavy Strucutural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '42']
[' Industry Name ', 'S General Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'HYDRAULIC PIPE FITTINGS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vijaya Durga engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'HYDRAULIC PIPE FITTINGS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srilakshmi Sai Automobile and Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'HYDRAULIC PIPE FITTINGS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Amitha engineering', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'HYDRAULIC PIPE FITTINGS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SHREE KANAKA DURGA HYDRAULICS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'HYDRAULIC PIPE FITTINGS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'INSTRUMENTATION AND AUTOMATION SOLUTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial Automation Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AKSHAYA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SV Industrial and marine services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'FOUNDRY MINOR WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ramesh industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Deccan Industrial Products', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'HARI CHANDANA ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'INDIAN DAIRY EQUIPMENTS AND FABRICATORS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Industrial equipment manufacturing or supply', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'jayalakshmi furniture', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'S J ENTERPRISE', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jai Chirangiva Agro Industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Devi iron furniture works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Moon Steel Traders  Manufacturer', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai chandrika engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI JYOTHI VIJAYABHASKARA IRON WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HUSSANNA  ENGINEERING WELDING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vasili Venkata Ratna chari', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'STANDARD STORAGE SYSTEMS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON AND STEEL FURNITURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Vijay Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRON FENCING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DVR ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRONSTEEL SEMIFINISHED PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRONSTEEL SEMIFINISHED PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Visweswara Arc Welding Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRONSTEEL SEMIFINISHED PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MADINA ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'IRONSTEEL SEMIFINISHED PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhavani Shankar Welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Jobbing and machining', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Karimulla foundry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Jobbing and machining', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Xerox and Laminations', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Lamination Works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Habeebulla engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGARAJU ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RESHMA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jayalakshmi industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S K SILAR ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D POWNDRY', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRIRAMACHANDRA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri yerri swamy engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna lathe works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'swamielu welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANDUKURU HARDWARES', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANAND ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama hanuman lathe work', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA SANKAR ENGINEERING AND LETH WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Padhma Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Aman Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Anil Poundry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Satya Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chaturved Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Engineering', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Lakshmi Narasimha Swamy Auto Engineering works', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Star Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Eswara iron foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Noor Engineering work', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI DURGA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Meenakshi Lathe and welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkataramana Welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raos mechanical works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Elohim lathe works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'siva Shakti  auto mobile engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Basha Lathe and Welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'shree vijayalakshmi foundary works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jaya venkata gopi engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI LATHE AND ARC WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vasanta engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ankalamma engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lohasri engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'shaik mabu sunani engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Surya Lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'siva ramanjineyulu works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jilani lathe work', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI LAKSHMI AUTO ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MANIKANTA ENGG WORK SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vijaya durga foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LOKANADHAM WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kamakshi Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA ENGINEERING AND ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SIVA KUMAR ENGINEERING WORKSHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KAMARAJ TURNING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIMHAPURI AGRO LATHE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A to Z Mechanical Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Swamy Lathe Turning works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MDS SERVICE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SADASIVA ACHARI WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kasee viswanath engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOGAN WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veera Venkata Laxmi General Engineering Workshop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA KAMAKSHI', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Devi Lathe workshop', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PRIYADARSHINI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BABA FAKRUDDIN ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nizam welding work', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balamurugan Lorry Body Building Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sai ganesh engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'raghu engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'asha engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'v satyanarayana', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MAKKA ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SB AUTOMOBILES AND ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SARWESWARA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAINADHA WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI DURGA ENGG WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vigneswara Lathe Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri devara durga lathe works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AM WELDING AND TURNING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATYANARAYANA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya Durga engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari engineering works', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'AMARAVATHI TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LIFTS AND LIFT EQUIPMENT AND ELECTRONIC ACCESORIES', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Apple elevations Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LIFTS AND LIFT EQUIPMENT AND ELECTRONIC ACCESORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'AMBICA GENERAL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LIFTS AND LIFT EQUIPMENT AND ELECTRONIC ACCESORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VAISHNAVI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LIFTS AND LIFT EQUIPMENT AND ELECTRONIC ACCESORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUNRISE LIFTS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LIFTS AND LIFT EQUIPMENT AND ELECTRONIC ACCESORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ameena Auto Electrical Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LIFTS AND LIFT EQUIPMENT AND ELECTRONIC ACCESORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'T K R wires pvt ltd', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'VENKATESWARA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Golden engineering enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYA SANTHOSHI BABA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'A1 fabrication and millers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'VIJAYALAKSHMI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JOSEPH COATED SANDS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'teja engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SK ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Excellent Engineering work', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Ismail Turing works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Purnima Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRAKASA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '98']
[' Industry Name ', 'KRISTNA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '109']
[' Industry Name ', 'Jami Hydraulics Private Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '19']
[' Industry Name ', 'UPRUN INNOVATIONS LLP', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROTOLOK VALVES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'NATIONAL FABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery and Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'JVR INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery Equipment and Heavy Steel Structures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JEY KEY ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery Equipment and Heavy Steel Structures', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'veerabhamhendra swami wood works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAVI TEJA POULTRY EQUIPMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Vijay Agro Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bhavani engineering', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'dhaneswari engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVAS ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Saradhi Millers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri lalithamba Power Pvt limited', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sun engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NEWTON INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'DEVI GAYATRI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MMD Heavy Machinery India Private Limite', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'Sri Sai Hydraulic', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Yasin A Z car care', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri durga welding work', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI UMA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri varsha wheel s', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BUILDING', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AYUB ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN AGENCY', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AHAD AUTO ELECTRICALS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI UDAY BHASKARA FOUNDRY WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MODERN MACHINE TOOLS AND ENGINEERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'FABCON', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'EVEREST ENGINEERING ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'EVEREST ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri lakshmi Ganapathi engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga electro engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA DURGA LAKSHMI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DROPSA SPICELUBE INDIA PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri surya enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manfacture of colour coated sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Msn constructions', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manfacture of colour coated sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri kanakamahalaxmi iron works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manfacture of colour coated sheets', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIZAG STEEL ROOFING INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manfacture of colour coated sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SAI NATHA POWDER COATING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manfacture of colour coated sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'visakha colour powder coatings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manfacture of colour coated sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MOBILE CARE ACCESSORIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manifacturing of Rotary Valves its Accessories', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'CONTROL COMPONENT INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manifacturing of Rotary Valves its Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '96']
[' Industry Name ', 'SRINIVASA VALVES', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manifacturing of Rotary Valves its Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Raghavendra pre stress Pvt Ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture and supply of Prestressed Concrete sleepers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'S V Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'HARE RAM ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANIKANTA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAVIK ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KONDAPALLY INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHARANI FABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'NATIONAL FABRO TECHNOLOGIES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'NABKO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'mohan krishna trailer works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANKRIS TECHNOLOGIES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'JAMAL GRILL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ROLEX M S Steel products', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SARMA CYLINDERS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '30']
[' Industry Name ', 'SATYANARAYANA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Srinivasa steel metals', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sreevenkateswara welding and turning working', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sairam Millers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri lakshmi ganapathy industry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GOWARDEN FABRICATION INDUSTRIES PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'anand k', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA LAXMI VENKATESWARA WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya durga welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SPANDHANA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JAYASHANKAR ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SOUMYA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHIMA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri nagarjuna engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI MARINE AND CIVIL ENGINEERING WORK', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA GANESH ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMARAVATHI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MANIKANTA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'pravallika Fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUMAR ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'J K FABRICATION AND INDUSTRIAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VRV ASIA PACIFIC PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '62']
[' Industry Name ', 'G K INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHABEENA ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIZAG MECHEM ENGINEERS P LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MASOOD SHEET BUILDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Engineers Roofing Solutions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'COMPRESSORS AND CONTROLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI ASHOKA TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Likitha Energy Systems Pvt Ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of fabricated metal products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'TAJ WEIGHING BRIDGE', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of HTS wires and stranding', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MADRAS HARDTOOLS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of HTS wires and stranding', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'srinivasa industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of HTS wires and stranding', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Madeena battery works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ms reddy steel corporation', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'marelec engineering co', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'nagesh engeenering', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'East Coast fuels', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'FRIGDEX INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'INDUS REFRIGERATION PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture Of Industrial Refrigeration Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '28']
[' Industry Name ', 'Sri Durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S Y Tyres', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SINGAM ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ganesh Link Mesh and Poultry Equipment', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Ambica wire netting industry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Amaravathi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA STEELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sai steel wire processors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri sai link mesh', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRII ANNAPOORNA LINK MESH AND POULTRY AGRO WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Link Mesh Fencing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'srinivasa iron works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Metal cable and other articles made of wire', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AYUB KHAN INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Metal cable and other articles made of wire', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KRISHNA LATHE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Metal cable and other articles made of wire', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madhusudhanarao auto', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Metal cable and other articles made of wire', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sarayu structural private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'siva Shakthi poles industry', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Royal cement Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Rayalaseema Cement  Product', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Uma Maheswari varala company', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Rayalaseema spun pipe', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanaka durga power poles', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Chidam Venkateswar rao PCC members making unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ACC LTD VIZAG CEMENT WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SAHUWALA CYLINDERS PVT LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '170']
[' Industry Name ', 'M S B Constructions', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sai industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Datta Sai cement concrete products', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Manchukonda Prakasam Industries pvt ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'AP Classic parking Tiles', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri Venkateswara spun pipes', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya deva cement products', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TIRUPATI PRECAST', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Ravisankar industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PARIMALA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacture of Pre Stressed Cement Concrete Poles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Govind Spares And Marketing Agency', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DURGA BHAVANI FOUNDRY', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhuvaneshwari engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi srinivasa general engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ASSET TOOLING TECHNOLOGIES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sree Geetha bhagawan engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAJA RAJESWARI FASTENERS MFG CO', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF PRESS TOOLS MOULDS JIGS FIXTURES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Madina industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kanchamma thalli workshop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Saikumar Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BISMILLA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kalyan furniture and iron works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Tirumala industries', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VINAYAKA STEEL ALMARAH WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI DURGA BHAVANI IRON BEERUVA WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shabbier wardrobe manufacturers', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree sai balaji steel furniture works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'R  and D engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Farm steel products', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HKGN SHAIK KHAJA vali', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahaboob shubhangi grills works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'keerthana works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumalaya iron works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'LORUS IRON WORKSHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Branch of sri satyamambha engineering workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'NAIDU FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa grills fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI MODHAMAMBA ALMIRAH WORK SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA LAKSHMI IRON WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'siva satya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya durga steel cobord works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S B INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VARALAKSHMI ENTERPRISE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI HASINI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Janibasha iron and steel works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA STEEL PRODUCTS AND FURNITURE', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai Engeering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Manikanta Iron Beeruva industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Taj furniture shop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'A P R Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Mustafa Traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA ALMARA WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Eswar Varaprasad Iron Biruva works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmana Rao Iron works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KUMAR FURNITURE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RK WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maha Raja Rajeshwari Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Maheswara Engineering Work Shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAH Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF TOYS AND OTHER DECORATIVE ITEMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R K computer stickering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF TOYS AND OTHER DECORATIVE ITEMS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'HMT Metal cutting', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF TOYS AND OTHER DECORATIVE ITEMS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VINAYAKA BRASS WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF TOYS AND OTHER DECORATIVE ITEMS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Manikanta Swamy and suppliers', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing and Exporting of Decorative Items (Dry Flower Bouquets Pot Pourriers)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'munwar auto engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'RAGHURAM HUMEPIPES PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'vinayaka engineering products', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'ayesha Chandini drilling rod works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sri Vinayaka Spun Pipes', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Dynamic equipment', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'KUMARI LATHING WORK', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Rohini Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Swetha industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Abhaya anjaneya automobile engineering', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI RAMA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'kk infra', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'BERL Engineering And oil Field Services', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'sri sai rcc hume pipes', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'LAKSHMI SRI VENKATESWARA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'AIROTECH PROFILES INDIA PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Arif grill works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sridhar welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Uma Shankar', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'VIJAYALAKSHMI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'ANJANEYA FABRICATION WIRKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Aslam electrical and engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Bhagyalakshmi enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Srinivasulu engg works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SIDDHIVINAYAKA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI VENKATA SAI RCC PIPE INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'KOLKATA MOULDERS AND ENGINEERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'J S ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Vagdevi techno crats', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'HYDRO PNEUMATIC ENGINEERING SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sadiq engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI LAXMI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'GARVEN C Alloys PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Vijaya durga cement works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing Borewell bits', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'varalakshmi ENGINEERING works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing Borewell bits', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Andhra radiators', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing Borewell bits', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SLNS lifting works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing Borewell bits', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SURYA GAYATRI GENERAL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing Borewell bits', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Khasim Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raja foundry', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri nagendra engineering workshop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri surya agro industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai balaji industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI INDUSTRIAL LATHE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'maniramana agro industries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vivekananda General engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Balaji engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yogitha Arc Welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramarao agroworks', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI AMARAVATHI WELD MESH', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'veerabrahmendra weld mesh', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Mobiles', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA VENKATESWARA AQUA AND AGRICULTURE IMPLEMENT MANUFACTURERS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera Prathap Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri sai engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISAKHA AUTO GARAGE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BASHA AGRO ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SURYA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri kalikadevi welding work shop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'POORNASAI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KBN engineer works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sriramakrishna engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mehaboob subhani engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SURAREDDY ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk basha turning works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'yoshadamma forging works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara engineering works Pvt LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Naveena Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera raghava engineering works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRT TRAILOR WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lalitha Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRK TRALLY WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hindustan Agricultural Implements', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SREE VENKATESWARA LATHE WORK SHOP', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kavya arc welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Madeena engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jesus general engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VIGNESHVARA HYDERABAD ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KBN ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NAVYA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh Agro Products', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRAKASH AGRO INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'G SATYANARAYANA WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Devi agro industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata sai durga engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DURGA ENGINEERING WORK', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Veerabhadra Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BL ENTERPRISE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PATAN ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VANI INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rakshitha engineering works', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Lakshmi Ganapati engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri veera venkata durga welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAMEER AGRO HARVESTERS INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'KUMAR AGRO INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF AGRICLTURE IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shaik asif Pasha vulcanizing works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of All Types of Filters and Elements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kohinuru industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of All Types of Filters and Elements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai srinivasa industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of All Types of Filters and Elements', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'Hitech maintainace service', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of All Types of Filters and Elements', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa foundary', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Shareef engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Urban engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri pipe bending', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siddeswari engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara engineering worka', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Viswakarma industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya sai small scale industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'chaitanya sri engineering worka', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saijacks', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Gayatri automobile Pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJA RAJESWARI CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'suresh casting works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUNRISE ALLOY CASTING', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SSV WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAIRAM CRONITE ALLOY CASTINGS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'unicast enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHAURYA CASTINGS AND ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'CX PRECISION MECHANICAL INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '89']
[' Industry Name ', 'sri sai durga foundry and engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Alloy Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Nataraj packages', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF ARECA NUT PLATE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vinayaka plastics', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Bio Plastic products from biodegradable and compost material', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Rashid Foundry', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Bio Plastic products from biodegradable and compost material', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KWALITY PLASTICS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Bio Plastic products from biodegradable and compost material', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Bio Plastic products from biodegradable and compost material', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OLEOTECH ENIGUNEERD PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Chemical equipments', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LIMI SOAPS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Chemical equipments', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri kanakadurga agencies', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of CNG & High Pressure Cylinders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'surya engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of CNG & High Pressure Cylinders', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STAR BATTERY WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK AKBAR COMPRESSORS AND BREAK CHAMBERS WORK', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri balaji genaral engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Veera Venkata Satya Lakshmi Durga Automobiles Industrial Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri saibaba auto engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NISSAR ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AL KAREM AUTOMOTIVE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS TECHNOLOGIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'IEC METALLURGICAL MACHINERY MANUFACTURERS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Md ali engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prabhu engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mangalakshmi Turning Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya Chandra Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P Doraswamy', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata lakshmi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'G M ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AMBIKA GENERAL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA POWER SYSTEMS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'srinivas industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SS CONTROLS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMADAS ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA ENGINEERING WORKD', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ELUGULA Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI HANUMAN ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF CUTTING TOOLS AND MACHINE ACCESSORIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DENTELLIGENT DENTAL SOLUTIONS PRIVATE LI MITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'LGR BUILDING SOLUTIONS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'vikyaath technologies', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Hunter Douglas India Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '106']
[' Industry Name ', 'ch pandurangarao', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAJRAM POLYMERS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri radha krishna furniture work', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pratap Power Systems', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UB decors', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sivaganga fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI WOOD TURNINGS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Rao Moulds', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri amrutha enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Siva Durga Industrial Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Satyasai Engineering works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Harshitha Sri Enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'K V SUBBARAO ROLLING SHUTTERS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A RAMESH WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'chanti welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri siddivinayaka welding', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Yaswanth building solutions', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'babji baig welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijayadurga welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kamakshi furniture works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHAVANI ALLUMINIUM WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Yesu Deva Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri satya sai durga welding shop', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Saraswati glass plywood', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Harikrishna Engineering works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vtech Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIRIS ENERGY SOLUTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jeevan jyothi workshop', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SV ENGINEERING INFRA STRUCTURES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jeevan jyothi welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ujjayini Mata Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA KRISHNA INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'MISHA UPVC WINDOORS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GAJARAJ DISH ENDS WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF EMPTY LPG CYLINDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'ZIXIN CYLINDERS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF EMPTY LPG CYLINDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '47']
[' Industry Name ', 'SRI RAMAKRISHNA ENGINEERING ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Equipment and Chemicals for Water Treatment Plants', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'PRADEEPTHI ENVIRO ENGINEERS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Equipment and Chemicals for Water Treatment Plants', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'sree Rama purified drinking water', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Equipment and Chemicals for Water Treatment Plants', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAFIA AUTO GARAGE', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRETEC UNDERGROUND PRIVATE Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Keerthi engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVA PARVATHI IRON SAFE', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gouse Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'shree mandala enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UNIVERSAL ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SHAKTI AMALGAMATED INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI SAI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'GEETHA SRAVANTHI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SANDHYA SREE BOILER WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI GANAPATI SAI ENGINEERING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Engineering Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Srinvasa Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ASSI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jaya Building systems', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raju engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA RATNAM WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVA FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BJR Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANJANEYA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri lakshmi sreenivasa fabrications', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI PADMALAYA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SPR CONSTRUCTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Jhonson Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ADITYA FILTERING TECHNIQUES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Pinnacle Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KM WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai Subramanya Engineering Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Sri Vigneswara Designing work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S B frabics', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri surya industrial lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PADMAJA WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nilakanta engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Deal Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'New Veenar Shutters', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMAKRISHNA  ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI ROOF INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'RAMAKRISHNA ENGINEERING AND FABRICATION WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHAVANI GRILLS WORKS AND ROLLING SHUTTERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Veera brahmendra engineering work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kwality kichken ware', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ketha Narayana Design Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai baba Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri vigneswara Old srings', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Harvasa Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'krishna bhagavan industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'R S FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HEMA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kuncham amba fabrication', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SWAMY FABRICATORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANS INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'T S FABRICATION', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri vijayadurga enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lalitha Steel', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'harish seating collection', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Kanaka Durga Design and fabrication works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'v Kumar Rao aluminum works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaga durga gas welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SN BROTHERS FABRICATOR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SHREE KANAKADURGA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R S V R GANGADHAR', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Mahalakshmi Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI AMBICA FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Amma fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'UNIVERSAL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'TEAM POWER ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '43']
[' Industry Name ', 'AV ENGINEERING SERVICES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '26']
[' Industry Name ', 'NAVDEEP ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Steel Welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'kamakashi metal arch Pvt LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Vinayaka Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SSVGD ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'vikky engineering work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Polstar Building Systems', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'FLASH FORGE PVT LTD UNIT 3', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '22']
[' Industry Name ', 'SRI durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FLASH FORGE PVT LTD UNIT 2', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Kanka duraga hydraulics and fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sankar Ganesh Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MADINA ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KHAN ENGINEERING AND FABRICATION WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Durga ganapathi engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANKAR IRON INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHARGAVI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIVEK WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri rajeshwari engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MICROLITE TECHNOLOGIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SIMHADRI INFRA STRUCTURES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HAYAGREEVAYA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri sai Venkateswara fabrication works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NOOKAMBIKA ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anil Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SALASAR PERFORATORS STEEL SHEET WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHANDRA KALA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'sri venkata durga engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE RAJA ENGINEERING AND FABRICATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI KANAKA DURGA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata sai durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PENTA GLOBAL ENGINEERING and CONSTRUCTIONS PRIVATE LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SATYA LAKSHMI ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '36']
[' Industry Name ', 'GANTA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Krishna veni engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mardimamba engineering  works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIMHADRI WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SANGAMESWARA WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DEVI GENERAL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'VEERA VENKATA VASUDEVA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Marimamba engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA SAI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'NEW VVS ENGINEERING AND FABRICATORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ALLURI INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'FLASH FORGE PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '128']
[' Industry Name ', 'LASYASRI GLOBAL INTERIOR AND ENGINEERING SOLUTION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Komali welding fabrication  works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Techno weld industrial works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'RVS cottage industries and agencies', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AIRFLOW TECHNICS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'A meena Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'RAVI FABRICATORS AND ENGINEERING CONTRACTORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Venkateswara arc welding and engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bondada engineering private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'Sri satya  sai enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE KRISHNA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'MECHFAB BABU ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'INDHIRA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'National engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MEGHANA ENGINEERING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'indwell constructions private ltd', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '78']
[' Industry Name ', 'PARAMOUNT BUILDING SOLUTIONS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MAHA EQUIPMENTS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'RR INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sreenivasa Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Smart Technologies', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Gas valves and Requalification of LPG cylinders.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Lakshmi Venkateswara Oxygen', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Gas valves and Requalification of LPG cylinders.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sreeram Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Gas valves and Requalification of LPG cylinders.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Teja welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Iron Boxes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'National fabrications', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Iron Boxes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Tauseef Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Iron Boxes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA SRINIVAS WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Iron Boxes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree Balaji construction', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'wintech engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Satya sai srinivasa electrical and engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'coolex industries Private limited', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SRI GAYATHRI AGENCY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'sri sai radiators', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SIVAAZI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'PNR ENGINEERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'DB SOLUTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'CM CABINS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SAI DURGA ELECTRICALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'DECON ENGINEERS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'AREVA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sakthi Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'CNR ENGINEERING', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'pattam fazal ahamad', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Sri lakshmi Engineering works and Fabrications', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'SUNRISE INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'OM SRI GAYATRI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Nukambika weldings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MHN engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'New star welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SUBRAMANYESWARA WELDING SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneyam Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA DURGA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RATNALAMMA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GVR Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'mahaboob subhani', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYANARAYANA IRON AND STEEL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TOOBA GRILLS AND WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Devi welding work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYA DURGA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PANDURANGA SRINU ENGINEERING AND FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Megha Harsha welding and fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ratnam welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Tradey', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'nagarajunafabrication and engineering workes', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Varasidhi Vinayaka Welding work Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Durga bhavani welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHRAKSHAYANI WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'AFRIN NEW ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHARATHI ELECTRICAL ENGG WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARUNA DESIGN WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'JN ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MADEENA GRILL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satya Sai Timber Depo', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'QUALITY STEEL', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Ranga Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'manufacturing of metal doors windows', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LG Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of metal drums', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA ENGG COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of metal drums', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIVARAM BARREL INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of MS Drums', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ANANTHA LAKSHMI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF PANELBOARDS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PRASAD POWER SYSTEMS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF PANELBOARDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Industrial power services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF PANELBOARDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MURTHY INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF PANELBOARDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'cosmic power systems private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF PANELBOARDS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SM ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Piston rods', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAMA TURNING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Piston rods', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vijayalakshmi leach pit rings', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Rudra Metal  Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'UMA SANKAR METAL WARE', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'jasmine welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'baji casting works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SIRI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vigneswara  engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Jyothi Metals', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHINTAMANI WELDING WORK SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Supreme Castings', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Castings', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'Simhavalli Hydraulic', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'PAVAN FABRICONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Geetha Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SIVA KRISHNA ENGINEERING', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CASTLETON SPRING PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Hanuman Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ramadevi engineering wokrs', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BSP HYDRO DREDGING WORKS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'KARUNA MANOJ INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LEISTEN SYSTEMS AND INFRASTRUCTURE PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'STRU FABS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sainadh industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VENKATA HAYA GREEVA FOUNDRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEPCONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BEZAWADA ENGINEERING INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'R K INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SV Hydrosystem', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'KVS ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Moksha Lakshmi INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Steel Products for Heavy Industrial Machineries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'babu agro industries', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Farooq Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Varasiddi Vinayaka Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'vijaya lakshmi welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganapathi Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Pooja Small Scale industry', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYANARAYANA AGRO INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sarada Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai krishna engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Venkataswamy Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SPJ Enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'AL KHADEER ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RAMA SAI AGRO INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dintakurthi Sai Rama Krishna', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS MADEENA TRAILER WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'GP ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MADHU ENGLINEERING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Tractor Trailers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'vengamamba charitable trest', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri krishna sevasamithi', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vayu Putra mineral purified  water plant', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri amrutha water workers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Royal Refrigeration and air conditioning', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sree sai water treatment private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'grow green enviro technologies', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WATER PURIFIERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MASGA ALLAH WELDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai lakshmi diesel services', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mathadi jafar', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shnmuka engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Naga satya engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veeranjaneya welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva parvati welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Om sakthi engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree sai ram engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shalem engineer welding works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bharath engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF WELDING MACHINES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Shanwaz rubber works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufaturing Of ERW Tubes And Colour Coating Sheets & Pipes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'laxman desiol works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mechanized laundry using oil fired boiler', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JSN INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MEDICAL DEVICES MANUFACTURING ZONE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JSB INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MEDICAL DEVICES MANUFACTURING ZONE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri LakshmiVenkateswara engg works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI SIRI TECHNOLOGIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NR CNC TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Srinivasa General Trading', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RIDGES AND BORE PIPES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Subramanayam gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEMNI FOOD EQUIPMENTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TLMS RIVITS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Raju Hydraulic Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dharanidhara engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Raju work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kamala engineering work', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kamala engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SWARNA LATHA LATHE WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NARESH ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PAVANI ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'manjunadha engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG AND RECONDITIONING OF OIL INDUSTRY EQUIPMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Alphatech Systems', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG AND RECONDITIONING OF OIL INDUSTRY EQUIPMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SURYA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG AND RECONDITIONING OF OIL INDUSTRY EQUIPMENT', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baba Shoda Makars', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF AIR CONDITIONERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R S N Raju AC Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF AIR CONDITIONERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Visakha duct profile industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF AIR CONDITIONERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'Bharath Mesh industries', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF BARBED WIRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'jay industrial products', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'mfg of boiler accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R K S Engineers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'mfg of boiler accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'X tech industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'mfg of boiler accessories', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Rama Aluminium Rolling Mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF KITCHENWARE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'VEECOS CANTEEN EQUIPMENTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF KITCHENWARE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'PRAVARA MODULAR INDUSTRIES LLP', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG OF KITCHENWARE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'CHANDU POWER TECH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'V ENGINEERING ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'devi durga engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R sudharani automobile works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri ohm sai hydrolic services', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW STAR AGRO INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'AY techno industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KOBELCO CONSTRUCTION EQUIPMENT INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '443']
[' Industry Name ', 'Noor engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANESH METAL CRUSHERS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Anjaneya Concrete Equipments', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suri poundry work shop', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NATIONAL ENGINEERING AND PROJECTS CONSTRUCTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammadiya Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GU INDUSTRIAL AUTOMATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'VINAYAK PRECISION ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'DOZCO INDIA PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '134']
[' Industry Name ', 'vertex industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAGDHEVI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipments and Machinerys Spares', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VIDYA INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG. OF NAILS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri vinayaka engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG. OF NAILS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VISAKHA SCREWS AND SPARES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MFG. OF NAILS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijaya durga scaffolding', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Swamy flyash bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'jayendra building solutions', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'CERA CHEM PRIVATE LT', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RK millers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Saradhi Millers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri siva durga welding works and concrete Miller lifts', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg.of Construction Equipment', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'star industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI NARAYANA PLASTICS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Global Ophthalmic Solutions', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Cement Concrete Works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RCA TECHNOPLAST PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Moulding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'METRO ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sridurgabhavani welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zubeda engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vengamamba fabrication', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mountain industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AK Grill Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yogesh Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MALLIKARJUNA ENGINEERING LATHE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Madeena Welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOULALI GRILLS AND WELDING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Moula Grill Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MN ENGINENEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'NS WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'faruk madina engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NELLORE ROLLING SHUTTERS GRILLED WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'New Mubarak Shetter and Grill Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI BUNNISA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mubarak Rolling Shutter', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI BUNNISA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jyothi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Trinath Welding and Design works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'DADAPEER ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DURGA WELDING AND DESIGNING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ASARIPOLARAMMA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Hema sundar rao welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri srinivasa Engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lahari welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Subbarao Welding Shop', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vara Siddi Vinayaka fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rejina Fabrication Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Somesh Welding and Fabrication', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sharada Engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri satya kanaka Durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhanukumari steel works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Akshaya Engineering And Fabrication Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATTIBABU WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Akbar lathe machine and engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RUPACHANDRA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAAJ FABRICATORY', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara welding and Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RAMALINGESWARA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MSK ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LEKHA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Danesu Engineering and  Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VARAHA NOOKAMBIKA WELDING SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sai Gayathri welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HARSHA FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Badi Dalayya engineering and welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS GRILLS GATES AND ROLLING SHUTTERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE RAMAKRISHNA ENGINEERING COMPANY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS Pipes Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'THE INDIAN HUME PIPE CO LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MS Pipes Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '107']
[' Industry Name ', 'Arun Furniture', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING']
[' Industry Name ', 'Vishnusri Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Nano Materials manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri ravi teja traders', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Packing of powdered mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri ganesha flour mill', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Packing of powdered mill', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Lakshmi venkateswarao packaging industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Paper pins and U ?clips', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TECHSMART ENGINEERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PHARMACEUTICAL MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'svs engineering', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PHARMACEUTICAL MACHINERY MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'Puneeth Techno Projects OPC private ltd', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Pipes Fittings', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sai Lakshmi Industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Pipes Fittings', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Omkar industry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Plastic& Steel Drums', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUDHA PRIYA INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Power press', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Kanakadurga welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING CONSTRUCTIONS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BALAJI ASSOCIATES', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING CONSTRUCTIONS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI TEJA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING CONSTRUCTIONS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'KVR RMC', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING CONSTRUCTIONS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SHOORA RMC', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING CONSTRUCTIONS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Padmavati venkateswara centring dipo', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING CONSTRUCTIONS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'THE NANDAM STEEL PROFILES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING STRUCTURES AND COLOUR COTTED METALLIC ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DURGA REWINDING WORK SHOP', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRE ENGINEERING STRUCTURES AND COLOUR COTTED METALLIC ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vinayaka precast industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Precast walls', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sai balaji transport and services', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Preparation of Drilling Fluids(SOBM WBM and BRINE)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'prabhakar industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRESSURE DIE CASTINGS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'GURU RAGHAVENDRA INFRASTRUCTURES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PRESTRESSED CONCRETE POLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Bala Balaji pvc doors', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'PVC EDGE BAND TAPE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Icon UPVC Doors and Window Systems', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Readymade doors', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sai vigneswara lorry body buildings', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz Radiators work', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAKRA ELECTRO  TECH', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'INAYATHULLA AUTO ELECTRICAL DYNAMO STARTER', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik jameel', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Diamond Deasil Service', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJA RAJESWARI SPARES AND SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAHESWARI ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shanthi water servicing centre', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Arif Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M V BALARAMAN WORKSHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Mahi tyre service', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivas Engineering Corporation', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri ganesh industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri veera raghavareddy engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkata krishna engineering', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya engineering workss', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DHANA LAKSHMI TECHNICAL SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MOHAN ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata Sai Durga engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veeranjaneya Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SVR TINKERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEMNI INTERNATIONAL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA ENG WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Veera Venkata Satyanarayana Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gafoor Turning Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA ELECTRICAL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sirdhar Auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BISHMILLAH CHITOOR BALAJI MOTORS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madeena Engineering work', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADINA MOTOR WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri sagar engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Viswakarma Electricals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KHUDDUS ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESWARA ENGINEERING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Servicing of Machinery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh Brass Upensils', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vijayalakshmi metal works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S Mabu Valli Almara Repairs', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Adinarayana Reddy Tinkering', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bobby iron safe works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JAI SREE DURGA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Peddappa  Kamakshi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vj perfect air products', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'BHARGAVI ENGINEERING INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Khaseempeera Iron Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SIMHADRI APPANNA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMRV ENGINEERS INDIA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SHEET METAL WORK', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'RAGHAVENDRA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Ship breaking activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kodandarama engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Anjana Srinivasa lathe works and welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vinayaka engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SAI JYOTHI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AKSHAY ELECTRIC  WORK', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vinayaka Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI RAM INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HIMALAYA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Flowtech fluid systems pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spares for Pumps and Accessories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'MARUTI FLY ASH BRICKS INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spun Concrete Poles etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri panduranga spun pipes', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spun Concrete Poles etc', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai Ganesh Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Spun Concrete Poles etc', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri jayadurga spun pipes company', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SPUN PIPES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'manjeera cement concrete products', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VISWA SAI SPUN PIPES', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Ganesh spun Pipes', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'BALAJI SPUN  PIPES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Srinivasa Spun Pipes Co', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'SPUN CONCRETE PRODUCTS INCLUDING PILES AND POLES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sree Lakshmi Heavy Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'STAINLESS STEEL SINKS MANUFCTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Pavitra Fabtech', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'STAINLESS STEEL SINKS MANUFCTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SURYA METALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'STAINLESS STEEL SINKS MANUFCTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'YOGESWARA ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'steel & civil structures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA CONSTRUCTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'steel & civil structures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KDM Engineers India private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'steel & civil structures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 's s assosiates', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'steel & civil structures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri phani bhushana steels', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'steel & civil structures', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MADHURI STEEL ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Re Rolling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'VSP REBAR INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Re Rolling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vijayalakshmi roofing industry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'STEEL ROOFING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA ENTERPRISE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'STEEL ROOFING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'VIPASSANA INFRASTRUCTURE PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'STEEL ROOFING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BALAJI ENGINEERS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALPHA TECH STEELS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATA SAI GENERAL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bharathi engg works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI GAJALAKSHMI INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRISAIGANESH ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sarada steel works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'S B INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Structural Fabrication', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'NANDINA Hi TECH STEEL CORPORATION', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Wire Drawing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'shine poultry weld mesh industries', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Wire Drawing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DHANTEK INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Steel Wire Drawing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SR Welding and Fabrications', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Surgical and medical products not involving effluent / emission generating processes.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'modern industry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAIBABA TRADERS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BHAVANI AGRO INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Prasad Enterprises and Engineering', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI BHARATH INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SMAM WELDING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madena foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai agro industries', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Friends Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivas agro industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkata durga engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHAVANI ENGINEERING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'TRACTOR TRAILERS AND AGRICULTURAL IMPLEMENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'THERMAX LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Vapor absorption chillers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '334']
[' Industry Name ', 'LAKSHMI VENKATESWARA WELDING SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'malleswara welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVARAKONDA SRIHARICHARI WELDING', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'WELDING SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahaboob welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ali Steel and Iron Workshop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai vana Durga engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'steel and iron design works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI HANUMAN ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Abdul Hakeem engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRAKASH ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Brahmam welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SIVA DURGA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri kamakshamma welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri padmasai fabrications', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aravindu Welding Workshop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NARASIMHA VELDING SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA MADHURA ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rahamthulla welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI Venkata Lalitha rolling shutters and design works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sairam welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Subramanyam Welding Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Appanna eng', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satyavathi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramesh Body Building', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri uma maheswara welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Khadar Foundri', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'friends engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bhavani Sankar engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'PGAD Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shaik riyaz engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sapthagiri Steel Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DBS PRASAD WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'V D DHARMAN WELDING SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Indian Engineering services', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Raju welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M S Welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Arafath industries', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri nukalamma  steel  bocket repair works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai baba Fabrication and body building works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya durga welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkataramana engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sreenivasa welding workshop', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raju welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa welding shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'DURGA VENKATA SAI ENGINERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA NEW DESIGN WORK', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi EnggWorks', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RR ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohammad grills and welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noor welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Allabakash welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Joshna Engineering Workshop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MURUGAN WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Usman Welding Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Inshallah Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi Narasimha Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NABI ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A1 welding Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASU WELDING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BALAGANESH ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jafar Welding Works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ravikiran Work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'syedshajad welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ethakota sitaramaiha welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veera brahma swamy welding shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABAVALI WELDING SHOP', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kanchikamakshamma kammaram and welding workshop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'All Square Engineering Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Leo welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri vijayadurga engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SAI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'Sri shiridi Sai engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kanchi kamakshi   engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ganesh industrial works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Thajan Bhasha Welding Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANJUM WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Appa Rao Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAVEEN SRI WELDING SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'virat welding works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sivarajeswari Engineering Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'APURVA SS WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri vijayadurga engg works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI ENGINEERING WORK', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI LATHE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA LAKSHMI WORK SHOP', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Ramayogi welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MANIKANTA WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KNR ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VEERANJANEYA DESIGN WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PURUSHOTHAM WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BRAHMA GANESH GAS WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BABU  ENGINEERING  WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kuppili gowriswara rao work shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'S ASLAM BASHA LATHE WORK', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'p adinarayana welding work', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri kalyani fabrication works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vishwanathaachari welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi Ganapathi iron and steel desiging works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Fabricators', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noorani welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'welding shop savalapuram', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa EngineeringWorks', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'hashish wedding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kodi simhachalam welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'manikanta welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla Welding work', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'suresh welding shop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Suresh welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Welding shop', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri rambabu engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SSV Bafrun welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NAGENDRA TRACTOR WORKSHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sharon ARC welding', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Majji rajesh workshop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'nookabika welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Elshaddai welding works and fabrications', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI BEERUVA WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Durga welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SSK WELDING WORK SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shri Lakshmi Venkateswara engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'ANAND PRASAD WELDING  WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkatakrishna durga welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi ganapathi Engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Narayana work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RATNALAMMA THALLI WELDING AND PUNCHER SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Karuna foundry works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Masthan welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'umesh chandra welding shop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GAYATRI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri gowri sankar wood and welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Manasa welding work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagaratnam welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KARTHIKEYA WELDING SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYA SAI WELDING SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srr welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Bhaskar weling shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kamakshamma welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'CHINNA STEEL AND IRON WELDING WORKES', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Umasankar welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'govindamma welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMAKRISHNA TRACTOR REPAIRS', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri sri engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sidhi Vinayaka Welding Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Sai Durga Fabrications and Arc Welding', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Tirumala engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri anjanaya welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHABOOB BASHA ENGINEERING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravishekar Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAGHAVENDRA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri satya Durga welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakamahalakshmi welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MYLARA LINGESWARASWAMY WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kanakadurga welding works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri kotadhurga welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Design Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bhavitha engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BASHA WELDING  WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAMPATH VINAYAKA WELDING SHOP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ARUN WELDING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Salaam Auto Engineering works', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateswara industrial works', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri chodamambika engineering and fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'suresh welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Balaram Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sathya Welding Works', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'AZHAR BASHA', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri subramanyam industrues', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'shaik mohammad', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswara welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LALU WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Arch Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VARASIDDI VINAYAKA BODY BUILDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vaishnvi durga welders', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R S Arshad Engineering and Welding Works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BASHEER WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri syamalamma welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri surya venkata durga engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kiran industrial engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANKALAMMA engineering works', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Venkatarao welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vijaya Durga fabrication works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bhagyalaxmi welding work', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'zeelani gas welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara welding and turning works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Auto water servicing centre', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'S V ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KADIYALA KAMESWAR RAO', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Fayaz electrical engineers', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nanda chari welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Bhagavan Venkaiah Swamy iron shop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prasannanjaneya welding and centring', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sai Ganesh welding shop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhadrinath Engineering', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRI ENGINEERING WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Ram Steels', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SATYANARAYANA BLACKSMITH WORK', ' District Name ', 'Prakasam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri satya enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NR Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa foundry', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGU BABU FOUNDARY', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vani Engineering workshop', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri Venkateswara engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri srinivasa engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anjaneya welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata mahalakshmi Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siddhartha engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S MANJULA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING AND BLACK SMITHY WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay Krishna ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'panchajanya industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAGNARC ELECTRODES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'VISAKHA ELECTRODES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'sri Balaji electrodes private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Voltarc India Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VOLTARC ELECTRODES PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'TAJ MUBARAK ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAGNA ENGINEERING PRODUCTS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'WELDING ELECTROCODES MANUFACTURING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'SRI MURUGAN ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Welding Electrodes', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Hussain engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Welding Electrodes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'omega welding electrodes', ' District Name ', 'Srikakulam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Welding Electrodes', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MAGNARC ELECTRODES PVT LTD UNIT TWO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Welding Electrodes', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'eswari Saw mill', ' District Name ', 'West Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Wire Saw Rope Segments and Polishing Abrasives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GREEN GROW MORE BIO FERTILIZERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri dhanalakshmi vermi compost project', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LOTUS BIOTECH', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Surya bioaaa private limited', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ESSENCE AGRO CHEMICALS', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'baba ali oil rotary', ' District Name ', 'Kadapa', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Sri Firing Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ORGANIC FERTILIZER', ' District Name ', 'Chittoor', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Bio Fertilizer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI CHINTALA POLAMMA VARMI HACHARIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'SRAVYA BIO TECH', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'VENKATESWARA TRANSPORT', ' District Name ', 'Prakasam', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'VENKAT SAI TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'SRI KALYANI FISH NETS', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'Sri venkata Sai poultry feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'Innovative pest control', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'ms petrozol industries Pvt Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'BIO PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RENUKA BIO MANURES', ' District Name ', 'Chittoor', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'BIO PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'jyothirmayi neem products', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'malladi organic products', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'SSR BIOTECH', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'Lakshmi paints', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (basic)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateshwara mini rice mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (basic)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (basic)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Hindustan Agro Chemicals', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (granulation and formulation only)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SWARNABHUMI FERTILIZERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (granulation and formulation only)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'NIRMAN FERTILIZERS Private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (granulation and formulation only)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '22']
[' Industry Name ', 'RENUKA FERTILIZERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (granulation and formulation only)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KANIPAKA VARASIDDI VINAYAKA TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'padma seeds', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SOVEREIGN MICRO FERTILIZERS', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Dwaraka resin industrys', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sudarshan Agro  Bio Chemicals', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DASHRATH PRASAD FARTILIZERS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '26']
[' Industry Name ', 'OMKAR FERTILISERS PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '24']
[' Industry Name ', 'HIMAJA FERTILIZER AND CHEMICALS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '15']
[' Industry Name ', 'SRI SRINIVASA FERTILIZERS AND GENERALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'N G FERTILIZERS AND CHEMICALS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '37']
[' Industry Name ', 'RANAR AGROCHEM LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '93']
[' Industry Name ', 'varunaorganics Pvt', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SWATHI FERTILIZERS AND PESTICIDES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Dutta Enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VINAYAKA AGRO FERTILIZERS INDIA PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '47']
[' Industry Name ', 'LAKSHMI GANESH AGRO FERTILIZERS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '58']
[' Industry Name ', 'DEEPTHI FEETILISERS AND FESTICIDES', ' District Name ', 'Kurnool', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vijaya durgeswara traders', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'noCOROMANDEL INTERNATINAL LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizers', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '104']
[' Industry Name ', 'varmi compost', ' District Name ', 'Srikakulam', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'Asian crop care', ' District Name ', 'Krishna', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'Sarath traders', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'KPR AGROCHEM LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'KPR AGROCHEM LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'SHANMUKHA AGRITEC LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides']
[' Industry Name ', 'Dharani agri tech', ' District Name ', 'Guntur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Manufacturing of Micronutrient mixtures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RainBow Agrilife india ptd', ' District Name ', 'Kadapa', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Manufacturing of Micronutrient mixtures', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS BHASKAR FERTILISERS PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'manufacturing of NPK Mixture Di Calcium Phosphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Maheshwari Fertlizers', ' District Name ', 'Kadapa', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'manufacturing of NPK Mixture Di Calcium Phosphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Veeramasu Transport', ' District Name ', 'Prakasam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'MANUFACTURING OF ORGANIC FERTILIZERS (FROM MUNICIPAL SOLID WASTE)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MITHRA MICROS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Micronutrients Water Soluble and Bio Fertilisers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GENUINELY FARM PRODUCTS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Micronutrients Water Soluble and Bio Fertilisers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'K R  Fluid technologies', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Ferro Alloy manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Ferro Alloy manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NABI RASOOL POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Ferro Alloy manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Sai Durga Stone Crusher', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MANISHA MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PAVANI STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA LAKSHMI STONE CRUSHERS', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRISRINIVASA STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Narayana swami stone crusher', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Saisarveswara Stone crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI PADMAJA STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sms industries', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Chandrasekhara micro chemicals', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ramakrishna pulverisers', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERA GANAPATHI STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'sreesaila mallikarjuna slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISHNU METAL INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PRASANNA VIGNESWARA BHAVANI STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI GAYATHRI STONE CRUSHERS', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Hanuman stone crusher', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri venkateswara clay grinding industry', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'PRUDHVI MINING COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SS Rock Products and Constructions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'SRI SAI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RG MINES AND MINERALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sai Vengamamba Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raja kumar stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'laxmi slab polishing', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'BELLATRIX INFRASTRUCTURE PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Ramanjeneya Granites', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SAI LAKSHMI STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SHREE INTERNATIONAL VYAPAR PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Srinivasa stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Ms Ayyappa Stone Crusher', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sai Maheswara stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SAMPATH SURYA DURGA METALS AND MINERALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI GANAPATI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bala Balaji Granites', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI KESAVA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI MANI SAI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAMA KRISHNSA STONE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sankara Granite metal works', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'PADMAVATI STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI RESHMA GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOWJANYA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGA SAI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'L Shakti stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'vengamaba granites and metals', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Metal Iindustry', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Satya Ganesh stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vani Bhava Durga Granite metal suppliers', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI RAM STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA DURGA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Ramakrishna stone', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Padma Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NAGENDRA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Krishna granites', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA BHARATHI GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'gowri sametha ramalingeswara metal suppliers', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'koduri enterprises Pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SREE NAVYA METALS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PADMA SRINIVASA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIGNESWARA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI VENKATESWARA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRASANNA STONE crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Laxmi Granite Metal Suppliers', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Charan stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SYAMALA METALS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shridi Sai Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Surya Chandra metal traders', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sarp Metals Private Ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMAKRISHNA METAL TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MM GREEN FUEL', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'HANUMA METALS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Saptagiri Stone Processing Unit', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SATHYA SAINATHA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA STONE CRUSHER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Venkata sai stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KVR Granite metal suppliers', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VAJRI STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MADHAVI METAL CRUSHERS', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAMA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRINIDHI GRANITES METAL SUPPLIERS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI METAL TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BAVITHA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sai Krishna stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri balaji granties and metals', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri siddhi kalki bhagavan stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BHARATHI CEM INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Maxworth minerals India Pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PAVAN GRANITE METAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRILAKSHMINARASIMHACHIRANJEEVIMINERALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '24']
[' Industry Name ', 'Sri Balaji stone crushers', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI SEVEN HILLS STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sri anitha stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'SRIKANAKA DURGA STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'The Standard Granite crusher', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Sarojini Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI METAL CRUSHER', ' District Name ', 'Kadapa', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri sai venkateswara stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRIDEVI CONSTRUCTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI SANGAMESWARA STONE CRUSHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI BALAJI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRINIVASA BUILDCON INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'SRI DHANA LAKSHMI STONE CRUSHERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'navadurga stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'SPM AGROTECH AND MINERALS PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVA PROJECT CONSTRUCTIONS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'KVNR CONSTRUCTION', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA METALS  SAND INDUSTRIES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI BALAJI METAL CRUSHER', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'Ala mineral industries', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIKESH METAL INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M NAGAIAH GOUD', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SWATHI MINES', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Sri Durga Stone Crusher', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SLNS ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'PVR CHALAPATHI METAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'ISN RAJU INFRASTRUCTURES P LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'Sri Venkateswara Stone crushers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'VISION STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Sri Raviteja Slab Polishing Industry', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANJUNATHA STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'royal stones', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'Best gravels', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI BABA STONE CRUSHER UNIT', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'KGN METALS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JETTY SATYANARAYANA AND OTHERS', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Lalitha ParameswariStone Crushers', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S R K STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Sri Matyalingeswara stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Madhava Projects', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '47']
[' Industry Name ', 'Sri G Satyanarayana Reddy - 1869', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'SRI SARADA STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SOUTHERN ROCKS AND MINERALS PVT LTD UNIT IV', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'nandhagokul stone crusher', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'G R R ASSOCIATES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MODERN CRUSHERS', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sri Sai Balaji Stone Crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SGKRR STONE CRUSHER', ' District Name ', 'Kadapa', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'VIJAYA MARUTHI STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'V N ASSOCIATES', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI SIDDIVINAYAKA STONE CRUSHERS', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA BLUE METAL', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '24']
[' Industry Name ', 'S S B STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'S S G STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Muragan Stone Crusher', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'MOGAL stone crusher settypalli bkothakota', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'VENKATA SAI KRISHNA STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'MADHU CHANDRA STONE CRUSHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'Rasi stone crusher', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri pavan kumar stone crushers', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VINAYAKA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Velmurugan Stone Crusher', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'SVSTONE CRUSHING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'DWARAKAMAI CONSTRUCTIONS PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI DHANALAKSHMI STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'yellarthy shaikshavali stone crusher', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Lakshmi venkateswara metal industry', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SSSS STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'FORTUNE STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'touched stone minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA STONE CRUSHING UNIT', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'B SRINIVASULU STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'NEW SUBRAMANYESWARA TRADERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri lakshmi ganapathi minarals', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'TRIBHUVAN MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D yallarthi shashavali', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sadguru Raghavendra stone crushers', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Gowri Venkatarami reddy', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'AMM STONE CRUSHER', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sreenivasa Stone Crusher', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri sai deep minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Venkata Kartheek Abrasives', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining equipment', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara clay works', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms spartech', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Clay Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SVV CLAY GRINDING AND REFRACTORIES', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri shiridi saibaba ceramics and refractories', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GODAVARI MINES AND MINERALS', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'R RAMIREDDY', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of China Clay', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K Meena Kumari', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'P SANKURAJU', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'sri suryachandra granite and metal supplies', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'S K granites', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Ganapathi Granites Laxmipuram Village Kallur Mandal', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vardhini granites', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '15']
[' Industry Name ', 'Sri Navodaya granite industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'BARIKA SLAB CUTTING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'lohith granites', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING OF GRANITE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'sarvagnya yachendra', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Mica and Feldspar', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '38']
[' Industry Name ', 'SADHANA MINERALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Mica and Feldspar', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'SRI BHAGAVAN MINES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Mica and Feldspar', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI BALAJI MINERALS', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'jaya Surya lime industries', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADINA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'CHINTALA KRISHNA MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHA MINES AND MINERALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Anjali Mineral Works', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Guru Sambashiva Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Quartz', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi ganapathi stone crushers', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Murali Krishna agro farms and estates private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Swamy stone crucher', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Murali Stone Crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Srinivasa metal crushers', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SREE VENKATA SASI STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Siva Sankara Stone crusher', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Ratna Granites', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata siva sai Granites', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Ganapati stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMANA STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRISIVASAICONSTRUCTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI MAHESWARI STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Saraswathi minerals', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'SRI VENKATESWARA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KVR MINES AND MINERALS', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Rama Krishna Stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi venkateswara stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri krishnadevaraya constructions', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VIJAYA DURGA GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Padmavathi Stone crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri seetharamanjaneya Granite Metal Corporation', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Srinivasa Stone Crushers', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI MURALI KRISHNA STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Mallikarjuna stones and minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'CB STONES AND CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SUJITH CONSTRUCTIONS STONE CRUSHER UNIT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS CHIRANJKEEVI BLACK STONE CRUSHER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'sri Thirumala swamie assosciates', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'BK SAI CONSTRUCTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI NARAYANA STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'CRB STONE CRUSHER', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'B SRINIVASULU STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'ADITHYA STONE CRUSHER OR VEL AND CO', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI DEVI STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI NARASIMHA STONE CRUSERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Maruti stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sravani constructions', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Modamamba stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vijaya Stone Crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Ms AMRUTHA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAI RAM STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATARAMANA STONE CRUSHER', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'chandrasekar stone crushers', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHALAKSHMI STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Manikanta stone crushers', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jai Veera Hanuman stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'MK CONSTRUCTIONS NEEDS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRINIVASA STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SAI RAGHAVENDRA STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SAI VENKATESHWARA STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'SRI VENGAMAMBA STONE CRUSHER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI LAKSHMI STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'TIRUMALA ROCK MINING', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Venkateshwara stone crusher', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI RAGHAVENDRA STONE CRUSHER', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'MS venkateswara stone crushers', ' District Name ', 'Chittoor', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SIVA SAI STONE CRUSHER', ' District Name ', 'Anantapur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '19']
[' Industry Name ', 'MS SV STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SRI LAKSHMI RAJA RAJESWARI STONE CRUSHER -MS GAYATHRI PRAJECT LT', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Maruthi Stone Crusher', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SAI STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Lakshmi paints', ' District Name ', 'Guntur', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Silica sand', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SESHASAI QUARTZITE PVT LTD', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Silica sand', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Ms Siva jyothi Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Silica sand', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'siva sai traders palakolanu', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Silica sand', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Ms NEW LINE MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Silica sand', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'LUCKY INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'MINING', ' Activity Name ', 'QUARTZ POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ADITYA MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'MINING', ' Activity Name ', 'QUARTZ POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Ramana Minerals', ' District Name ', 'Kadapa', ' Sector Name ', 'MINING', ' Activity Name ', 'QUARTZ POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Lakshmi Venkateshwara Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'MINING', ' Activity Name ', 'QUARTZ POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Varshini Enterprises Expn', ' District Name ', 'Kadapa', ' Sector Name ', 'MINING', ' Activity Name ', 'QUARTZ POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Ishwarya Granules', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'MINING', ' Activity Name ', 'QUARTZ POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri sai Durga fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'MINING', ' Activity Name ', 'Silica sand Mine', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'HIL LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '134']
[' Industry Name ', 'Vaishnavi Bed Material Suppliers', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahalakshmi floor and oil mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R METALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'visaka industries limited', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'GNR MINERALS PVT LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SK POTTER TOYS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos and asbestos based industries', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SAHYADRI INDUSTRIES LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos Fibre Cement Corrugated Sheets', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '46']
[' Industry Name ', 'CNC TECHNICS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Asbestos Fibre Cement Corrugated Sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'BLUE STAR PULVERISERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Arise Shine Exports Imports LLP', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Maa Majji Ghariyani Industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PR MINERALS AND CHEMICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'GOLDEN TULIP MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI MICRO PULVERISING MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Ms BLUE STAR MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'LAKSHMI NIVITHA MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI VENKATESWARA MINERAL TRADING', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'SRI BALAJI MICRO PULVERISING MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI SHIRIDI SAI MINERALS AND CHEMICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI LAKSHMI MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'HARINI INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'PRAISE INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'SRI LALITHA PULVERISERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'NAGAMANI PULVERSING MILL', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'K C P MINERALS  CHEMICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'SUHRUTHA MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'BLUE STAR ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'AYYAPPA MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'DHR INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'ASWINI PUIVERISERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'ASWINI MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'KSR Pulverisers', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'MS JYOTHI MINES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'JM micro pulverisers', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'R C Mines and Minerals', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DIAMOND MICRO MINERALS COMPANY', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI PAVAN MICROSOFT MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BARYTES POWDER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '19']
[' Industry Name ', 'Vijayamalleshwara Industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BIOMASS BRIQUETTES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ramesh bio fuels', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BIOMASS BRIQUETTES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai balaji chemicals', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ramakrishna chemicals industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'HARI PRIYA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SURYA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'PALANI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIREESHA LIME CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sravani mineral industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KISHORE CHEMICAL I INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI DHANALAKSHMI CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'BURNT LIME OR DOLOMITE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jaya spun pipes', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'The India Cements Limited', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '66']
[' Industry Name ', 'THE INDIA CEMENTS LIMITED', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '156']
[' Industry Name ', 'ARUNACHALAM SILPARAMAM', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri venkateswara industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Pydimamba spun pipes manufacturing', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'KCPLIMITED Macherla', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '224']
[' Industry Name ', 'NEW TECH MINERALS AND CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Gowtham Cements Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'Jayasree cement works', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAGAR CEMENTS LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '172']
[' Industry Name ', 'Kasthuri cement', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Chettinad cement Corporation Pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '160']
[' Industry Name ', 'Dalmia Cement Bharat Ltd', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '601']
[' Industry Name ', 'S V POLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'cement', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI CHAKRA CEMENT LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Clinker Grinding', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '38']
[' Industry Name ', 'MS SRI VIJAYA BHARATHI CEMENTS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Clinker Grinding', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Clinker Grinding', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI PAVAN KUMAR TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Concrete Tiles Paving Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Designer parking tiles', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Concrete Tiles Paving Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Thirumala Infra', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Concrete Tiles Paving Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AJ PRECAST PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Concrete Tiles Paving Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Hemadri Cements Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Sri sivani Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Penna Cement Industries Limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Jaya hume pipes', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'SRI BHARATHI CEMENT WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KEERTHI SPUN PIPES WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VISAKHA RCC PIPES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Azad cement works', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI DURGA BHAVANI R C C PIPES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'amaravathi spun pipes', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CHITANYA PIPES N PIPES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'CHAITANYA CEMENT CONCRETE PIPES', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'sri gowthami cement pipes company', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Cement Pipes', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VENKATESWARA CEMENT WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'ANKAMMATHALLI CEMENT WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'USHODAYA PSCC POLES CENTER', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Uriti punnaiah cement works', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SREE MALLESWARI CEMENT BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'PVR CEMENT WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'sai krishna cement blocks', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Sri srinivasa cement works', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Rama Sethu engineering and construction', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SAGI PANELS LLP', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Sri Sri peddamma talli nandalu', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Sri Vinayaka Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'kalluri spun pipes works', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'BRICKLITE INFRA INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'ULTRA PAVER TILES PVT LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M s Nageswari Constructions and PSCC Poles', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA PRASANNA FLY ASH BRICK INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'AYAAN CEMENT  WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA SHANKAR FLY ASH BRICKS INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'KAILASH INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HIMALAYA PRECAST INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri srinivasa cement design work', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Uriti Subbarao Sri Srinivasa Flyash Brick Industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVAA POLES INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NIKAM PRECAST INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SYNERGY CEMENTECH CORPORATION', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYADURGA POLES INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Lakshmi priya cement design works', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VISION BRIQUETTES INDUSTRIES OPC PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MARUTHI PSCC POLES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Radha Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI PADMAVATHI AMMA VARI CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CEMENT PRODUCTS ..', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Radha Krishna Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Chalk making from plaster of Paris', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'madhavi cottage industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Chalk making from plaster of Paris', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MADEENA PLASTERS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Chalk making from plaster of Paris', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AK ENTERPRISES', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Chalk making from plaster of Paris', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri girilalitha industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Chalk making from plaster of Paris', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakadurga steel', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'COLOUR COATED SHEETS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sarvani industries private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Concrete Mixing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'APARNA ENTERPRISES LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Concrete Mixing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SIBI MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Crushing & Pulverization of Quartz', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'JAISREE INDUSTRIAL LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Crushing & Pulverization of Quartz', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'THIRUMALA BALAJI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Crushing & Pulverization of Quartz', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VIJAYALAKSHMI STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SUHANA TRADERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS VIMS MINERAL AND METALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Uma veera badhra stone crushes', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ATYAM MINING PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Naga Lakshmi', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ABDUL  NAJEER IRON INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VARALAKSHMI STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'padmaja stone crusher', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NAGA JYOTHI STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAVAN SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATA RAMATHEERTHA STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'DURGA SAMBHAVI SILPAKALA MANDIRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshminarasimha Metal Enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'PLR Brothers Stone Crusher', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Sri Lakshmi shankara Shilpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS D KRISHNA REDDY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'CRUSHING OF NON METALLIC MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Anjireddy 2', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'JAI JEENMATA GRANITES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SRI HANUMAN GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'OM SAI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SRI SAI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'S V G RAGHAVENDRA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SRI SAI CHARAN MARBLES INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SREE SUGURESWARA STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Sri santhi vyshnavi Minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SREE BHAM ANAND INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANDHRA DETERGENTS MUTUALLY AIDED COOPERATIVE MARKETING SOCIETY LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'SANKAR SAI CONSUMER PRODUCTS UNIT-2', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'SANKAR SAI CONSUMER PRODUCTS UNIT-1', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'SANKAR SAI CONSUMER PRODUCTS UNIT - 4', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'SANKAR SAI CONSUMER PRODUCTS UNIT - 3', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Detergent Cake', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'WORLDWIDE DIAMOND AND JEWELLERY MANUFACTURERSS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Diamond Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'WORLDWIDE DIAMOND SORTINGPVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Diamond Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'WORLDWIDE DIAMO D MANUFACTURERS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Diamond Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI RANGA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'varshini minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS Raghavendra Minerals Enterprises', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree Vasudha mineral industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'WHITE FIELD MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS Divya industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI PULVERISERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS SREE LAKSHMI MALLIKARJUNA SWAMY MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI VRISHANK PULVERISERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS SHASHIREKHA MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA TEJA CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'ANURADHA MINERAL CORPORATION', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sahu minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Maheswara Minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS VENKATESWARA MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS PRAGATHI MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'white field minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswaramma minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS NIKHIL ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARTHIKEYA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'ABHIRAM MILLS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI BALAJI MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'New Sri Balaji Mineral Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Lakshmi Venkateswara Mineral Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SILICON MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vishnu Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'DOLOMITE CHIPS and POWDER AND LIME STONE POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Hindustan emery stone works', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Emery powder (fine dust of sand) manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'B V R Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'FLY ASH GRINDING AND PACKING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ganesh Fal g Brick Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'FLY ASH GRINDING AND PACKING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI SHIVA SAI PAL G MAKING CENTER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'FlY ash processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lnr Brick Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'FlY ash processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'RVR EXPORTS AND  IMPORTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'FlY ash processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Oceanic sands Pvt Ltd', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Garnet sand separation into different sizes.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '42']
[' Industry Name ', 'SATYA LAXMI MUD-CHEM PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Garnet sand separation into different sizes.', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Sri Varasiddi Vinayaka Polishing Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'GEM STONE CUTTING & POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PARIHAR INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SRI CHARANA GYPSUM POP INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Charishma Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'ANNAMALAIYAR SANKARI CEMENTS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Kiran gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Hazardous Cargoes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JMC CONSTRUCTIONS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'HOT MIXING PLANT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VARSHA MICRONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI HANUMAN LINE INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Bhavanasi narasimha Rao stone crusher', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Gopi Krishna Lime industries', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'venkata lakshmi Srinivasa  lime industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VYSHNAVI LIME CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI DURGA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SARVANA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA PULVERISERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI VENKATESWARA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'OMYA INDIA PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'WOLKEM INDIA LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '25']
[' Industry Name ', 'Ms Sri  Raja Rajeswari Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'New Sri  Laxmi Venkateswara Mineral Industries Nandavaram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SOUTH INDIA MINERAL IND', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SIVA SAI MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIME STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'payunidhi slab polishing', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S S V SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANAKADURGA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVARNA ENTERPRISE', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI CHARANA SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SURYA TEJA SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAVANYA SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijayaram slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BHOGESWARA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SWARNA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Manikhanta Slab Polishing Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE UMA MAHESWARA SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI ANJANEYA SWAMY SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SHANKAR ANITHA SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MURUGAN SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMAKRISHNA STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE MAHALAKSHMI  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAMATHA STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYA LAKSHMI SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI GANESH STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE UMAMAHESWARA STONE TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAMA SAI SLAB INDUSTIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE HARI STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAMACHANDRA REDDY STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE PALLAVI STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S R S SLAB POLISHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'UMAMAHESWARA STONE TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MUBASHAR SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G K S STONES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI PRASANNA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAJA RAJESWARAI STONES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEEPTHI STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI PRAKASH SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATASUNITHA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PARVEEN ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GANESH SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THRIVENI SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VINAYANAKA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUJITHA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HAINDAVI SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'R S Labs', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'POORNIMA STONE POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DHARMATEJA STONE INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MAHALAKSHMI SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SAROJA  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS ASHOKA SLAB POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAGHAVA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GURU SWAMY SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE LAXMI SLAB INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TAHEER SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ALI SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'FAROOQ SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GIRI SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS MOHAMMED STONES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS  JAWAHAR  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI RAMA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DHEERAJ NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE PHALGUNI MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI AMBIKA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Abdulla Stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GAFFUR SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAGHAVENDRA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GURU RAGHAVENDRA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'H M NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LUCKY MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'S K M STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SARANYA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUGUNA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAYATHRI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MALIK MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BALAYOGI SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI AMARESWARA POLISHING SLABS AND MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENAKTA RANGA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'POORNIMA SLAB POLISHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVA SHAKTHI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sikindar Stone Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARI SHREE SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAXMI SRINIVASA SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VELMURUGAN SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHETANA STONE POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HEMKIRAN STONES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AKHIL SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARAYANA STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LIKITHA STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SASHI SLAB INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RUBY SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI SANTHOSH STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HARIKA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SOURASTRA  SLAB  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JYOTHI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DADA POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW PRASANTH MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VARASIDDI VINAYAKA STONES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VISWARANJANI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE HARI SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI CHAKRA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JATADHARA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BABA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHREE KRISHNASHANKAR SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHAIKSHAVALI STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAVISHANKAR SLAB POLISHING AND MINERAL CO', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'MUSTAFA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri vaishnavi slab polishing', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KBNSLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMIDEEKSHA SLABS CO', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MADHU SUDHARSANA MARBLE AND GRANITE', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Venkata Sai Marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PREMKUMAR MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DADA STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI AMARESWARA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUNKALAMMA  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARSHAD STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARVEEN SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI DEVI SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS    SITARA  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA SAI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SOWBHAGYA LAKSHMI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAPTA SAILA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE RAJA GOPAL SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAMEER STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'TEJA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P CHANDRA MOULI REDDY MINE OWNER  AND SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA RAMANA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAHAMAN MINERLAS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAJA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KGN STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMYA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DHANASREE SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAHABOOB STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MAHESWARA  SLAB  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KRISHNA SAI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE VIGNESHWARA STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VINAYAKA STONES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE MAHALAKSHMI STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ABID STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'K G N SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI JAYASRI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAUSHAD STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THAMEEM SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS ANURADHA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHABOOB MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI AMARNATH SLAB POLISHING INDS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI UMA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KHAJA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI JEEVESWARA SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SEEMA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ZAM ZAM SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CHANDIPRIYA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS   STAR  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LALITHA KRISHNA POLISHING SLABS AND MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VIMALA SLAB POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA SLABS COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI RAMA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOVARDHANA SLAB POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUNNA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVASANKAR  SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'RAKESH STONE INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NAVATHA STONE POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AMBIKA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW RAJESWARI STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI KRISHNAVENI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BHAVANI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'STAR MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAJESWARI STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MARUTHI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOPI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA RAM SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SIVA BHAGYALAKSHMI SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHAFI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SWARNA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHUJATH STONE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'FLOWER MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI LAKSHMI VIJAYA SLAB POLISHING AND MINERALS INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CHADHULLA NARAYANA SWAMY SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAGAR STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI  KRISHNA  SLAB  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'HANSHITHA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RIZWI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MURTHY NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SHAFEE NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE PAVANI COLOUR STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NEW RAVITEJA POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVASA GRANITES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ROYAL MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'MS NOOR SLABS POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STAR STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RIYAZ MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MONARCH MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PADMALAYA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI HARISH SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LALITHA POLISHING AND MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PADMALAYA POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAMATHA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI VISHNU SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIJAYALAKSHMI SLABS AND MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SUHANA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAJA STONE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGA SAI RAMANANANDA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAHIPAL MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VAMSI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOWTHAMI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NAVARANG SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA SHANKAR INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS DESSIK MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MURALI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI SURYA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA NAPA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Pudhota industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI KRISHNA SATYA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VINAYAKA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PARTHASARATHI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI MOUNIKA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATA KRISHNA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'YAMINI STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DIVYA SREE STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VALLI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI BHAGYALAKSHMI SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BHAGYALAKSHMI SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VASUDEVA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'LIMESTONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NANDIPATI RAJYALAKSHMI MINES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Limestone Mining', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAINATH MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Limestone Mining', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Ahammad Exports', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of abrasive', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'ANJALI ABRASIVES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of abrasive', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SWIFT ABRASIVES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of abrasive', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'RENU BUILDING MATERIALS  OPC  PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'ENGINEERS TILES COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SREE SAI HITECH DESIGNER TILES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Vijaya sree fabrication works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MANUFACTURING OF DRYMIX MORTARS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAM GYPSUM PLASTER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'manufacturing of gypsum board', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'USG BORAL BUILDING PRODUCTS INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'manufacturing of gypsum board', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '125']
[' Industry Name ', 'Mahalakshmi MSand And Road Metal Industries 1570 PKOTHAKOTA REVENUEVILLAGE Puthalapattu', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MANUFACTURING OF M SAND BY STONE CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'M ANJINEYALU', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Balaji Granites', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'LAKSHMI GANGA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'LAKSHMI VENKATESHWARA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri sai enterprises', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BRIGADE ROCKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'RAJESWARI GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BABAVALI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Polishing Slobs', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Kalpa Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MANUFACTURING OF PRESTRESSED CEMENT CONCRETE E', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'sri  venkateswara industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MANUFACTURING OF PRESTRESSED CEMENT CONCRETE E', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'SAI POLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MANUFACTURING OF PRESTRESSED CEMENT CONCRETE E', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'JAIMATHA CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI CHENNAKESAVA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KALYANI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA LAKSHMI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PALANI CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUDHA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOKUL LIME CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHARAJA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANKAR CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA SIVA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI SRAVANI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PADMAVATHI LIME INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Manufacturing of Quick Lime and Hydrated lime using Mechanized and automated Vertical or Horizontal Kilin and Hydrated Lime plant', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'vishalakshi engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'ravileela granites limited company', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'rameshwara reddy slab polishing industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MARBLE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHIVATEJA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MARBLE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sathyam Granites', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MARBLE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Simhapuri  Ferro Alloys', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MFG .OF SLAG SAND BY PULVERISING AND GRINDING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vishnu Sai Saravana Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MFG.OF GROUND GRANULATED BLAST FURNACE SLAG', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Sri Balaha Chemicals Pvt Ltd', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MFG.OF GROUND GRANULATED BLAST FURNACE SLAG', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '17']
[' Industry Name ', 'VENSPRA IMPEX', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MICRO SILICA', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmipathi charitable Trust mineral', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sree Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RADHIKA METALS AND MINERALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '139']
[' Industry Name ', 'SRIJA AGARBATHIS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sheetal charitable trust mineral water plant', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sangani charitable trust', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Microfine Mica company', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAMBASIVA MINERALS AND BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'TTK FIBRE GLASS WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mother India Terracotta Artisans MACS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '100']
[' Industry Name ', 'SAI JASHITH MINERALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai mineral water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Akshaya minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SASHANKA POLYCHEMS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS shiva minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI UDAYA RAGHAVENDRA MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mabub subani mining pulverizers', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SR PLASTERS PVT LTD', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'MINERAL PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Steel Buffing Mill', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'BALAJI METAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SRI RAGHAVENDRA HANDICRAFT CENTRE', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'sri tulasi subrahmanya brass industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'ANURADHA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'SAI  LAKSHMI  ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'VIJAY MICRON', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Dolomite & ii.Crushing & Screening Dolomite', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri satyanarayana industrial works', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Road metal and Building Stone', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI VIGNESWARA STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Road metal and Building Stone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'BSCPL Infrastructure Limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Road metal and Building Stone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'GLOBAL STONE CRUSHERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Road metal and Building Stone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'SRI SAPTHAGIRI STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Road metal and Building Stone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Madhukar Stone Crusher', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Mining of Road metal and Building Stone', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Rajeswari minerals', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'saptagiri chemicals', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA LAKSHMI POLY PACKS industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA POULTRY FEED INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VANI CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'SRI DURGA NANO MICRONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'The Premier Mica Company', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'New Indian Agarbattis', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHRI KASHIVISWANATHA MICRO MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'SRI DURGA MINERAL INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Bhargava Enterprises and Logistics', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Advance Aqua Bio Technologies', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri jothr', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREE LAKSHMI CONSTRUCTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Fairoz Plastics', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Golchha enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MS ASSOCIATED MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gowri Plastics', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI POORNIMA MICRONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Venkateswara dairy products', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sree  venkata ganapathi crucible works', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MALKAPURAM MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS KRISHNA MICRONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'VR MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '43']
[' Industry Name ', 'CHALIX MICRONS INDIA PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'DIAMOND NANO MICRONS PVT LTD', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '16']
[' Industry Name ', 'SRI VENKATA SAI MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE VENKATESWARA PULVERISER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE UMAMAHESWARA MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SREE GHANAMADDILETY SWAMY PULVERSIERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Lakshmi Ram mineral pulverisers', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI CHOUDESWARI MINES AND MINERALS INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'D VENKATA SUBBAMMA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kiran minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'NON METTALIC MINERAL POWDERS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ARISE SHINE MINERALS AND CHEMICALS LLP', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'polverization of barytes', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi Narasimha Swamy Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PRECAST BOUNDRY WALLS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUN BRIGHT INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'TEJASWANI CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYADURGA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaya Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'PAVAN SAI CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PALLAVI CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMIPULVARISERS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SESHA SAYEE MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRC CHEMICALS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'RAGASIRI MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SVS MINERALS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SESHA SAYEE CARBONATES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'pulverising', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Gimpex Private Ltd', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '34']
[' Industry Name ', 'BANDHAV MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI PRUDVE MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SANKAR INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'OMKAR INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'BHAIRAVA MINERALS PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'Raj Minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI RANGANADHA MICA INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SOUTH INDIA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI RAGHAVENDRA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'MAHALAKSHMI MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SOUTH INDIA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Amrutha minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Venkata Sai Pulverisers', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Asian Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Asian Microns', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI JAYALAKSHMI MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Ravi Theja Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'PULVERISING OF MINERALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SAI KRISHNA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'QUARRYING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chettinad Morimura Semiconductor  Material Private Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'QUARTZ CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '47']
[' Industry Name ', 'SRI VENKATA SAI PAVANI ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'QUARTZ CHIPS AND POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'godavari spun concrete pipes', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'RCC SPUN PIPES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'COASTAL PRECAST CONCRETE PIPES', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'RCC SPUN PIPES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VIRTUE INDUSTRIES UNIT - III', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix cement concrete', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE GANESH READY MIX', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix cement concrete', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'NRR READY MIX CONCRETE', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix cement concrete', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sarvani Industries Private Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'NUVOCO VISTAS Corporation LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sai Brick Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete and Manufacturing of Other Construction materials like Fal-G Bricks..etc using RMC by products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Harsha hallow bricks', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete and Manufacturing of Other Construction materials like Fal-G Bricks..etc using RMC by products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'akshaya steels and stirrups', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete and Manufacturing of Other Construction materials like Fal-G Bricks..etc using RMC by products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Lakshmi refractories', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete and Manufacturing of Other Construction materials like Fal-G Bricks..etc using RMC by products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NUVOCO VISTAS CORPORATION LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete and Manufacturing of Other Construction materials like Fal-G Bricks..etc using RMC by products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri sai shankara brick works', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Ready mix Concrete and Manufacturing of Other Construction materials like Fal-G Bricks..etc using RMC by products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'COASTAL CONCRETE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'READYMIX CONCRETE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'KALIKA DEVI REFRACTORIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GMECO services', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'RHI CLASIL PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '419']
[' Industry Name ', 'Sri Ravi Crucible Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Refcom India Pvt Ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'AKKULAPPA POTTERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'G Akkulappa', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SWARUP ANAND POTTERY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'REFRACTORY MATERIALS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ramachandra Metal Crushers', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sai Stone Crushers', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Arunodaya Stone Crusher', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sri Himani Stone Crushers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '17']
[' Industry Name ', 'SESHADRI STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'VIRTUE INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Siva Kumar Reddy Stone Crusher Road Metal - 579 Acres', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'rohit industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE GANGA BHAVANI METAL CRUSHER', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VINYAKA METAL UNIT', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '23']
[' Industry Name ', 'Ganesh industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'chakradara slab polising industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi gowri mineral industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NETTIKANTI ANJINEYASWAMY SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'DIVYA IMPEX', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UPENDRA SLABS AND POLISHING', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Suvarna lakshmi slabs and minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NAGA ANASUYAMMA SLAB POLISHING INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI ASHOKA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVA RAMA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'DHANRAJ SLABS AND POLISHING', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SLABS POLISHING', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'manjunatha industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ACHUTHA MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH SLABS/ L S SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mohammed industries', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'khadir slab polishing', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi narasimha slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vijay slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Teja stone polishing', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Stone Crushers', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'shan enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MURUGAN MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEERA JAGADESWARA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri tirumala slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NEW CHAKRADHARA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SREENIVASA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkata Sai fly ash bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ARUNA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'New thirumala polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANA LAKSHMI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'marvel stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MANOHARA STONE CUTTING MACHINES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GVR EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'new nirmala marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHAIK MABU SPABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SRINIVASA SLAB POLISHING', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVARAMA KRISHNA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI LAKSHMI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VASAVI SIVA GANGA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SLATE INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri balaji slates', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pavan impex', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'S M V STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA SLAB POLISHING INDUSTRES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THIRUMALESWARA SLAB POLISHING INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'jai Veera hunuman', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Murali Krishna slate industry', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gayatri slab polishing', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE SAI SIVARAM STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMIVENKATEWARA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SREENIVASA SLABS POLISHING', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SriBhavani shankar Slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'nikhil industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Imran Stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Prasad slab polishing industry kooda', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'ROUGH STONE SLABS CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Grindwell Norton Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'GAYATRI MINERAL EXPANSION', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'BCL MINERALS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral']
[' Industry Name ', 'Nilakanteswara slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kalyan slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'parameshawara slab polishings', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri mallikarjuna stones', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baba slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri latha slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'slab polishing industry', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ms RAYAL STONE POLISHING', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEERANJINEYALU SLAB POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kachin slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAMAKRISHNA  SLAB  POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARUNA MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Tirumala Reddy', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mr CHARAN SLAB  POLISHING  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkateswaraswamy granites', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SWARNA ENTER PRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RR slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYAPADMA SREENIVASA SLAB POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SLAB  POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BHASKAR SLAB  POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mounika slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai lakshmi granites', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI ABIKA STONE TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siva sai slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LINGALA SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri nettikanti anjaneya swami slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GURU STONE POLISHING  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI SREENIVASA SLAB  POLISHING INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi sagar slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Parameshwara slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara slab industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhagyalakshmi slab industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai rithika slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree Rama slab  industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Chinna obulesu  slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chinna peddana slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rameswari slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meghana Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VLR SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VARASIDDI  VINAYAKA  SLAB', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHAITANYA SLAB POLISHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MS SAMA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SURENDRA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'YASOD KUMAR SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI HARSHA VARDHANA KALYAN SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lavanya stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESHWARA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MYTHRI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sharada slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'AL MADEENA SLAB POLISHING INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'akber slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RAJESWARI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Mastan baba slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MADDILETY SWAMI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KRR slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'REVANTH SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'New Sri sai ram slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Parameswara slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PARTHA SARATHI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'krishnamurthy welding and fabrication', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BHASKARA SLAB POSHISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI GANESH POLISH INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Anjaneya Slab Polishing Industrie Petnikota', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai maruthy marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri maheswari slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J S Natural stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAVI SHANKAR INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'STAR SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Ganesh Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SANGIREDDY SLAB POLISHING INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JAYALAKSHMI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVAJI  POLICING SLABS AND MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA RAMANA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VARSHITAA NATURAL STONE', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAM CHARAN SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ram Anjaneyulu  Slab and Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SUBRAMANYESWARA SLAB PILISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI RAMANA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SAI RAM SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SESHASAYEE SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VARUN STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SARVABHOWMA SLAB POLISHING', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS ERRAMALA KAMBAGIRISWAMYSLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sanjana stones industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'vyjayanthi stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SOUTHERN NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri pranathi slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KHAJA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEW PRINCE SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'viswarajani slabs and minerals industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SUBRAMANYESWARA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GOUSE AZAM STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRAKASH SLABS POLISHING AND INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Varalakshmi slate industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRISAILA MALLIKARJUNA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'tirumala stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAMADH HUSSAIN SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Nirmala Marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GAYATRI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SWAMY SLABS industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI GUGUDU KULLAISWAMY SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'New Mahaboob Slab Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Neelakanteswara Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Himalaya slab polishing industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI NAGENDRA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MADEENA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SLAB POLISHING CUTTING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NEW MAHESWARI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARSHA VARDHAN SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'JAYAPRADA MINERALS INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MANIDEEP SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAHASRA NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'thirumala marbled', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maheswara slab polishing industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BOMBAY SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Saila Bramaramba Mallikarjuna slab polishing industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Narmada slab polishing industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI  VENKATESWARA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'hari sree slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Swetha slabs polishing industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI RAMA POLISHED SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI PAVAN SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri siva maruthi slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE RAGHURAMA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NG GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI YELLAMMA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'INDRA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VISION NATURAL STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Ms MADDILETY SWAMY SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Lakshmi Narasimha slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'subramanyaswara stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BISMILLA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Khaja stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KARTHIK SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW AKM TRADERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'my stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri madhu sudharsana minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'K V EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI GOWRI SHANKAR MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAVITEJA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE RANGANATHA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHIVAJYOTHI SLABS ANDMINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ravi slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri mallikarjuna industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri nettikanti slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MARUTHI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri krishna slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Rama chandhra slab polising industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANNAPURNA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SHIVAM GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANJUN SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE LAKSHMI BALAJI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri lakshmi Srinivasa slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ROHINI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Murali Krishna slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMIVENKATESWARA SLAB POLSHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NITHYA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D S V SLAB POLISING INDUSTRY PETNIKOTA', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri rama slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama granites', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kumar slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SEETHARAMA SLAB POLISHING INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RANGANATHA Swamy slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Gangamathalli slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Siri marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI KAMBAGIRISWAMY SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA LAKSHMI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'jhansi lakshmi slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA GANGA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Shiridi sai slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THULASI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI PRASANNA LAKSHMI GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MOUNIKA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sree Lakshmi Srinivasa Stone Polishing Industry', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Om sai ram slab', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rajeswari Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS UDAYA RAGHAVENDRA POLISHING COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LEELA KRISHNA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW LAKSHMI VENKATESWARA SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GHOUSE SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NVR Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kowsik Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Maruti slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI SRINIVASA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Nisanth slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI devi SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gurumanikyamineralindustries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MASTHAN SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI THANUJA STONE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Surya Slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI JAYASRI SLAB POLISHING AND MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'CKR AND  MSR SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'mother India slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SIVA GANGA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GAYATRI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI BHAVANI SHANKAR STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'shivani Granites', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA SLAB POLISHING INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkata siva sai slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI PRASANNA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VASAVI SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DEEPTHI SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENGAMAMBA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sreedevi slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MYR MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Ramachandra mineral traders', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vasavi slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUBHANI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AKM TRADERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri kadhiri Lakshmi blessings swami slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bharat stone industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE LAKSHMI NARAYANA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Veera bhadra slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi polishing slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Maheshwara polishing industry', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE DINAKAR SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Y Ramachandra Reddy Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bhargavi polish Machines', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vamsi slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Asian polishing slab industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Viswarnajanislabsand mineral industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'veerabhadra slab industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri raja rajeswari slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAMAKRISHNA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Mahipal slabs polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'EVEREST SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VAISHNAVI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS SAI SUDHA POLISHING COMPANY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Harcilss industry', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI MARUTHI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAHIM SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SREE HANUMAN SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NEW KAREEM SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA  SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'INDIAN STONE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'RS GRANITE INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'PAVAN SLABS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anjireddy Products', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vijayalakshmi slab polishing industry', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIAJYA STONE WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SLAB POLISHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS Sundar Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sharmila slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'varalakshmi slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE DHARANI SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sarva poojitha raghavendra industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALANKAR SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SURENDRA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ANNAPURNA SLABS POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RADHA KRISHNA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri latha rani slab polishing industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SOUBHAGYA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLAB POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KOTESWARI SLATE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KANAKAMAHALAKSHMI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI SANDYA SLATE COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'ALLA MALIK SLATE PENCILS COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sapyhagiri slatepencil company', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MAHESWARI ENAMEL SLATE INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'veeranjaneya enamel industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'SLATES TILES AND SLABS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'White field minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'soap stone lumps', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'SREE SUBRAMANYESWARA SILPAKALA MANDIRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE SREE SREE ANJANEYA SWAMY SILPAKALA MANDIRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Raghavendra Shilpa Kala mandhiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE SAI MAHA RAJ SILPAKALA MANDIRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree veera Raghavendra Shilpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree viswabharathi silpakala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai mani silpakala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sri Sri Maddileti Swamy silpakala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri maha sai Shilpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Kasnuru Mastanaiah swamy silpakala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri mounika silpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi silpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE VISWAGAYATHRI SILPA KALA MANDIRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Veerabhadra achari silpa kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri maruthi silpa Kala Mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vaani  Bala Murali Shilpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sree umamaheswara silpakala mandiramu', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vani Balasubramanyam silpa kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VANI JAGADEESHWARA SILPA KALA MANDIRAM', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sharada shilpa Kala mandiram', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'stone carving', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Sri Sri sai Chandu stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CARVING OR STONE ENGRAVING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'AVANTHI  GRANITE METALS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CARVING OR STONE ENGRAVING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Hanuman stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CARVING OR STONE ENGRAVING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CARVING OR STONE ENGRAVING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PUJITHA MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA BHAGYA LAKSHMI STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Saptagari flyash brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KARTHEEK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Sai Laxmi stonecrusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SREE ASSOCIATES', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'MAHESH CONSTRUCTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'gowthami minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CHIPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KALPANA STONE CRUSHER INDUSTRY 0546 HA', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI HARI STONE CRUSHER', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Chaitanya stone crusher', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HAMEED MINERALS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Venkat sai stone crusher', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SAINADHA STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVASA EDIFICE PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SURYA KRISHNA STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree shiridi sai stone crusher', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Shiridi Sai Stone crusher', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'veeranjaneya stone crusher', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'MSR STONE CRUSHERS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri vijay lakshmi stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI SANTHI SWAROOP STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'meGRUHA LAKSHMI STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAIKRISHNA STONE CRUSHER 01', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MALLIKA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'R R Stone Crusher', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'VIJAYA DURGA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTA METAL STONE CRUSHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI DURGA DEVI STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Mahalakshmi stone crusher', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SATYASAI STONE CRUSHER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sai ram stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'LAXMI VARMA STONE CRUSHERS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Bharath Stone Granulators', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ARUNODAYA  STONE CRUSHING INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'GAVI SIDDHESHWARA QUARTZ PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'LEPAKSHI STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI BHAVANI STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Srinivasa Stone Crusher', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'SARADI NANDAN STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAJESH STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI BALAJI STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Seetha Rama stone crushers', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Laxmi Ganesh stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI CHENNA KESHAVA STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Veeranjaneya Blue Stone Crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA SAKTHI STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA STONE CRUSHER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI VANI GRANITES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MNR STONE CRUSHERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Seetharam Minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'siridi sai stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI GANESH SAI GRANITES MINERALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'SRI LAKSHMI BALAJI STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama Metal Industries  and Constructions', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIJAYA STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Sri manikanta stone crusher', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VIJAY STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MAHITHA STONE CRUSHER', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'SAINATH STONE CRUSHER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'MS Sun Shine Stone Crusher', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'SRI VALLI CONSTRUCTIONS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Nidhi stone crusher', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ESWAR STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Pavan Stone Crusher', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADINA STONE CRUSHER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'PARAMESWARA STONE CRUSHERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'BVR Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CRUSHER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'vamsi krishna kattamuri', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MS ANAND BUILDING COMPONENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Durga parameswari Stone crusher', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MVR STONE CRUSHER', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'MS R G MINERALS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI PRASANNA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Granite Metals', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA DURGA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'A SATYANARAYANA', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Maruti stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Gayathri nagambica stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA SWAMY GRANITE METALS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Madhura Meenakshi granite', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Tanmai Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Meher stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Murali Krishna Stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sri venkatesh poultry farm', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SATYA KRISHNA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gayatri Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Stone Crusher', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Badri stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRIDEVI LEELA KANAKESWARI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NEERANJANEYA BLACK STONE CRUSHER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATHYA SRINIVASA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEERA VENKATA LAXMI GANAPATHI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAINADH STONE CRUHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VINAY STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TARAKARATNA METAL AND GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai ganesh stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Srinivasa granite metal supplier', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KOTLA KANAKESWARA RAO', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Sri Durga Metals', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Madhavi Stone Crushers', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'DURGA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ranga stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SATYA VAMSI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI PRASANNA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'LAXMI GANAPATHI STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sri Gowri Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Surya Metal  Suppliers', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Chandra Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mounika stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'satya srinivasa crushers granites', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'THIRUMALA STONE CRUSHER', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Raju Stone Crusher', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VASAVI GANESH GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIRI STONE CRUSHERS AND COMPANY', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Ranga stone crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SR Stone crushers', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Sri Kanaka Durga Stone Crusher', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri siri stone crushers and company', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai Aditya Stone Crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri Gowri stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'arunachala stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'jameela stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'NANDINI STONE CRUSHER', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRI SRI BHAM BHAM BABA STONE CRUSHING UNIT', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'VENNELA STONE CRUSHERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'shanmukha stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SQUADM MINES AND MINERALS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'MEENAKSHI STONE CRUSHERS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JBV STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crusher Stone crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sravani shree stone crushers', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SRI LALITHA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA METAL SUPPLIERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI BABA STONE CRUSHER', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRINIVASA EDIFICE PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI DURGA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'CHAITANYA STONE CRUSHER EXPANSION', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATA LAKSHMI GANAPATI GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SAI SRI LAKSHMI VENKATESWARA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'AQUAMAX SYSTEMS INDIA PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI DEVI GRANITES', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sabari minerals', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'Sri Laxminarasimha stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi stone crusher', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA STONE CRUSHER', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI DURGA STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'ARUN STONE CRUSHER', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'AMMAN METALS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SAKTHI CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Praise Minerals', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA STONE CRUSHER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'Sri Chenna Kesava Crushing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone crushers', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI MAHA LINGESWARA STONE CRUSHERS', ' District Name ', 'West Godavari', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sreenidhi Stone Crushers', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATESWARA CONSTRUCTIONS AND MINING COMPANY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Miracle Metals India Pvt Ltd', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'PAVAN PUTHRA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SLV STONE CRUSHERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI SRINIVASA STONE CRUSHER', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SANDEEP MINERALS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Ganesh Stone crusher', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SAI PARAMESWARI STONE CRUSHER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DEEPIKA STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'ANNAPURNA STONE CRUSHER', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'YNR stone crusher', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'P J  AND CO', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'KHANDITHA STONE CRUSHERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUPER SAND MINES AND MINERALS', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MUCHATLA MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'PANI PULVERISERS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Narasimha stone crushing unit', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Kavya super micro minerals', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRINIVASA CONSTRUCTIONS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Crushing and Hot Mixing Plant', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi srinivasa polish industry', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kamadhenu lime industrie', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE ANANTHA PADMANABHA SLABS', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KALYAN  SLAB POLISHING  INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BINDU SREE SLAB INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara mineral industry', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RS granites', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nettikanta anjineya swamy slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROYAL GRANITE INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ZHDC 396', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRABHATH MINERAL INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'c james', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOHANA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'yesu dasu', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'zhdc 393', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zilla harizana development corporation 392', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K Babu Reddy Poultry Farm', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'c jayudu', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'zhdc 396', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sree rama stone and polishing', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'mahaboob Sharif industry', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RADHA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CHAKRAPANI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KRISHNA PRIYA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M N K R STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GEETHASRI STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NEW TEJA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MS SREE LAKSHMI VENKATESHWARA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI KIRSHNA SATYA SLAB POLISHING INUDSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI NARASIMHA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI GURU RAGHAVENDRA SLAB POLISHING INDUSTRIE', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS ARUNA SYONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ROHINI EXPORTS', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'NIKHILA GRANITES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'T MALLESWARUDU QUARRY LEASE HOLDER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gayatri Slab Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAPNA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KGN STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Mohammed slab Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob  Salb Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kedarnatha  High Cutting and Slab Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T MALLESWARUDU QUARRY LEASE HOLDER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Venkateswara slab Polishing Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JOGULAMBA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIGNESWARA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SD STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'T NAGA SHESHUDU QUARRY LEASE HOLDER', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'STONE ART', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA SARATHI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NEW SUPRIYA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS SABITHA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS M K STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI STONE INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIVA SHAKTHI SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'New Chakravarthi Emery Stone Woeks', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sasi marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'MS ETERNAL STONE IMPEX', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI RAVI SHANKAR COLOUR STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MS KAMAL MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MAHESH COLOUR STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai venu stones', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VINAYAKA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'ROSAMMA GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '17']
[' Industry Name ', 'MS BALA CHANDRA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pavan kumar slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GANGABHAVANI MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLAH POLISHED STONE', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI MAHALAKSHMI MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIRISHA MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAHAMATH STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SREE MARUTHI SLAB INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'HUDA STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SREE SLV GRANITES', ' District Name ', 'Chittoor', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MS SHIVANI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWARNA GOWRI MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Lakshmi venkateswara stones', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAMI STONES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PADMAVATHI SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva kumar Slabs', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'GOLDEN SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SUVARNA SLABS  AND  MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'THE STONE HOUZZ', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAINSH MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Kambagiri Swamy Salb Polishing  Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Salam Mineral Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SHREE BHAVANI SANKAR MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VARNA SLABS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Vaibhav Marbles', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VARIETY SLAB POLISHING INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ROYALE STONE AND MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GOWRI SHANKAR MARBLES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE CUTTING AND POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ms lakshmi kala stone crusher', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri veeranjineya stone crushers', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree siva ganga stone crusher', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree saptagiri stone crusher', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DECENT METAL CRUSHING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Venkateswara aggregates mining Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sai bhargavi stone crusher', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'sri vasavi stones', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Sree Veera Narayana Swamy Stone Crusher', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'jrc kcvr projects', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Trimurthy Engineering Constructions', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI MUCHATLA MALLIKARJUNASWAMY MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Stone Metal Crusher', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri lakshmi Venkateswara slab', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'new famous slabs', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STONE SLAB POLISHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOUTAMI MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STORING OF STEATITE OR SOAP STONE LUMPS AND DOLOMIT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'B SANJEEVA REDDY', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STORING OF STEATITE OR SOAP STONE LUMPS AND DOLOMIT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'NANDINI MINERAL INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'STORING OF STEATITE OR SOAP STONE LUMPS AND DOLOMIT', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI VYAHRUTHI MINERALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Vermiculite Mineral processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkata Padmavathi Minerals', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Vermiculite Mineral processing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Sai Minerals', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Vermiculite Mineral processing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'KATHAYAINI MINERALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Vermiculite Mineral processing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '15']
[' Industry Name ', 'SRI TIRUMALA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'WALL PUTTY IN POWDER FORM', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M G INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'WALL PUTTY IN POWDER FORM', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'MY HOME INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'WALL PUTTY IN POWDER FORM', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SIMRAN MINERALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'YELLOW OCHRE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Svl productios', ' District Name ', 'Kurnool', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'YELLOW OCHRE POWDER', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MARWA Enterprises', ' District Name ', 'Kadapa']
[' Industry Name ', 'Aditya Paper Products', ' District Name ', 'West Godavari']
[' Industry Name ', 'SMD HANEEF TRADERS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SUFFA Enterprises', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRINIVASA WASTE papers', ' District Name ', 'Krishna']
[' Industry Name ', 'SRIRAM BOTTLES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Suryachandra paper mills private limited', ' District Name ', 'East Godavari']
[' Industry Name ', 'VIJAYA TRADERS', ' District Name ', 'Guntur']
[' Industry Name ', 'Mitra enterprises', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'sri venkata ganapathi paper products', ' District Name ', 'West Godavari']
[' Industry Name ', 'manikanta paper plate service', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'CMYK MUDRANA ALAYAM', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'aksharam printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Gowri Shankari paper products', ' District Name ', 'Chittoor']
[' Industry Name ', 'sir Venkata Sai Teja printing and binding works', ' District Name ', 'Prakasam']
[' Industry Name ', 'HONEY PAPER INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'ATHIDHI PAPER  RUBBER PRIVATE LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'shanmukha packings', ' District Name ', 'East Godavari']
[' Industry Name ', 'SREE SATYA PACKAGING', ' District Name ', 'East Godavari']
[' Industry Name ', 'jaitra industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Vital Paper Products Pvt Ltd', ' District Name ', 'Chittoor']
[' Industry Name ', 'Cube packages', ' District Name ', 'Guntur']
[' Industry Name ', 'sri ram kumar pack tech industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'DECO PACKS', ' District Name ', 'Guntur']
[' Industry Name ', 'MUTHYAM PACKAGES', ' District Name ', 'East Godavari']
[' Industry Name ', 'RATHNA INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sai Varalakshmi Packings', ' District Name ', 'Krishna']
[' Industry Name ', 'PRD PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'SLS CARTONS', ' District Name ', 'Krishna']
[' Industry Name ', 'Ruchitha Packagings', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Vinayaka package', ' District Name ', 'Guntur']
[' Industry Name ', 'GAYATRI CARTONS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Aravinda corrugate Industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri sairam packing industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'GOSTHANI HI TECH CARTONS', ' District Name ', 'West Godavari']
[' Industry Name ', 'DINAKAR LITHO PRINTERS PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'PADMAVATHI CORRUGATED CONTAINERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SAI DINSHIKA INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI ANNAPURNESHWARI INDUS TRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'GOLDEN PACKAGES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Srinivasa Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'AMARAVATHI CARTOONS', ' District Name ', 'West Godavari']
[' Industry Name ', 'S S Packaging', ' District Name ', 'West Godavari']
[' Industry Name ', 'ABIS PACKAGES', ' District Name ', 'West Godavari']
[' Industry Name ', 'VIJAYA PAPER PRODUCTS', ' District Name ', 'Guntur']
[' Industry Name ', 'RISHI PACKAGINGS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Dinshika Packing', ' District Name ', 'West Godavari']
[' Industry Name ', 'VISHNU INDUSTRIES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SRI SAI KRISHNA PACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'DEVI PACKAGING', ' District Name ', 'West Godavari']
[' Industry Name ', 'SREE SAIRAM PACKAGING INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'Eswar print N pack Pvt ltd', ' District Name ', 'West Godavari']
[' Industry Name ', 'SIRI PACKAGINGS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Sairam paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'Rainbow packs', ' District Name ', 'Guntur']
[' Industry Name ', 'SS packages', ' District Name ', 'Krishna']
[' Industry Name ', 'COROMANDEL CARTONS AND CONTAINERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri jaya lakshmi packages', ' District Name ', 'East Godavari']
[' Industry Name ', 'JESUS PACKAGINGS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Satya Sai Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'Ambika packeging products', ' District Name ', 'Krishna']
[' Industry Name ', 'NVR CARTONS', ' District Name ', 'East Godavari']
[' Industry Name ', 'KCL Limited', ' District Name ', 'Chittoor']
[' Industry Name ', 'ANUSHA PACKING INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'sai priyanka Packaging', ' District Name ', 'West Godavari']
[' Industry Name ', 'SAI BALAJI CARTONS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SANTHARAMA PACKAGING INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'Nandini paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'MS  RS INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SAI SUDHA CORRUGATED ENTERPRISE', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Deepthi packing industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI LAKSHMI PRASANNA CARTONS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SRINIVASA PACKING INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Parksons Packaging Limited', ' District Name ', 'Chittoor']
[' Industry Name ', 'NUTECHPACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'JAYARAJ FORTUNE  PACKAGING PRIVATE LIMITED', ' District Name ', 'Guntur']
[' Industry Name ', 'VENKY PACKAGES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri sai packaging industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Balaji Packaging Products', ' District Name ', 'Krishna']
[' Industry Name ', 'COROMANDEL CARTONS AND CONTAINERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Classic packaging', ' District Name ', 'Krishna']
[' Industry Name ', 'MS PRIME PACK INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'NAMASTE PACKAGING PVT LTD', ' District Name ', 'Krishna']
[' Industry Name ', 'COROMANDEL CARTONS AND CONTAINERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'LIBERTY PACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'KIRAN INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MD NOOR MANUFACTURERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'VIJAYALAKSHMI INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Chalam ThermoPack Industry', ' District Name ', 'Krishna']
[' Industry Name ', 'SUN FOOD CORPORATION', ' District Name ', 'East Godavari']
[' Industry Name ', 'skm industries', ' District Name ', 'Kurnool']
[' Industry Name ', 'green cartons', ' District Name ', 'East Godavari']
[' Industry Name ', 'SREE RAM PACKING INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'anjaneya packing', ' District Name ', 'Guntur']
[' Industry Name ', 'SAI BHASKAR PACKINGS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'BHADRA CORRUGATED ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'bharath packaging industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'S S L PACKAGINGS', ' District Name ', 'Krishna']
[' Industry Name ', 'LIGHT MULTI PACKAGING INDUSTRY', ' District Name ', 'Guntur']
[' Industry Name ', 'COASTAL CARTONS PVT LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ARYAN PAPER PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SAI DIVIJA PACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Sai Paper Products', ' District Name ', 'Krishna']
[' Industry Name ', 'VIAAN INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'HANUMAN PACKAGINGS', ' District Name ', 'Guntur']
[' Industry Name ', 'CHANDRA PACKAGING', ' District Name ', 'East Godavari']
[' Industry Name ', 'ANDHRA PACKAGES PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'LORVENS PACKAGE INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'SREENIDHI RAJA PACKING SOLUTIONS PRIVATE LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'SP CORRUGATION BOXES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Vinayaka paper packagings', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Lakshmi Industry', ' District Name ', 'Krishna']
[' Industry Name ', 'SURAKSHITHA PAKAGES', ' District Name ', 'East Godavari']
[' Industry Name ', 'RAMYA SRI PACKAGING INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SUJATHA PACKAGING INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Ms SRIVEN PACTEC', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri  jayalakshmi enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRINIVASA PACKAGING INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri vijaya lakshmi enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri Bhagya Lakshmi Enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'Ms Sri Manufactures', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'PACK TEC INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SVR PACKAGING', ' District Name ', 'Kurnool']
[' Industry Name ', 'YOGI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'CHANDANA ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'FOURNT INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'GLOEX EXPORTS PRIVATE LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'SURAKSHA PARISRAMA', ' District Name ', 'Kurnool']
[' Industry Name ', 'SANTHOSHIMATHA CORRUGATORS PRIVATE LIMITED', ' District Name ', 'East Godavari']
[' Industry Name ', 'ASHOK INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ECONOPACK INDIA PRIVATE LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri sitaramnjaneya disposable products', ' District Name ', 'Guntur']
[' Industry Name ', 'Babu Binders', ' District Name ', 'Guntur']
[' Industry Name ', 'SURYACHANDRA BOOK PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'sai Krishna cottage industries', ' District Name ', 'Krishna']
[' Industry Name ', 'mintra industry', ' District Name ', 'Guntur']
[' Industry Name ', 'Ajantha printers', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI VIJAYALAKSHMI DYE CUTTING  AND PRESS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sai baba paper plates', ' District Name ', 'Kadapa']
[' Industry Name ', 'JAYALAKSHMI MANASA BINDING WORKS', ' District Name ', 'Guntur']
[' Industry Name ', 'MANIKANTA ENTERPRISES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'manufacturing of paper plates', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri Vigneswara Paper plates', ' District Name ', 'Guntur']
[' Industry Name ', 'jai hanuman dinner plates', ' District Name ', 'East Godavari']
[' Industry Name ', 'S M PAPERS', ' District Name ', 'Krishna']
[' Industry Name ', 'raja rajeswari printers', ' District Name ', 'Srikakulam']
[' Industry Name ', 'sai ganesh printers', ' District Name ', 'Srikakulam']
[' Industry Name ', 'The Andhra pradesh  paper', ' District Name ', 'Krishna']
[' Industry Name ', 'Jessica paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'LAKSHMI VENKATESWARA INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'sairam enterprises', ' District Name ', 'East Godavari']
[' Industry Name ', 'Kavitha Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sri kanumuri graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'S R Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRINIVASULU REDDY POSIM REDDY', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Aamoda publications', ' District Name ', 'West Godavari']
[' Industry Name ', 'PRAJASAKTI PRINTERS AND PUBLISHERS PVT LTD', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Greater Nellore', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'MADHULIKA ART PRINTERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Vara Vinayaka Net Cafe', ' District Name ', 'Kadapa']
[' Industry Name ', 'I NET XEROX', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sri vijayadurga graphics', ' District Name ', 'Kadapa']
[' Industry Name ', 'dhadha zerox centre', ' District Name ', 'Anantapur']
[' Industry Name ', 'Dharmateja Printing Works', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sekhar digitals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sarayu digitals', ' District Name ', 'Krishna']
[' Industry Name ', 'New Geethanjali studio', ' District Name ', 'Kadapa']
[' Industry Name ', 'abhi industrys', ' District Name ', 'Prakasam']
[' Industry Name ', 'Universal industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'KR Flex printers', ' District Name ', 'Srikakulam']
[' Industry Name ', 'sri Royal graphics', ' District Name ', 'Kadapa']
[' Industry Name ', 'sri Hari graphics', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sri Lakshmi venkateswara digitals', ' District Name ', 'Chittoor']
[' Industry Name ', 'Csc centre s narayana swamy', ' District Name ', 'Anantapur']
[' Industry Name ', 'SVA FLEX OFFSET PRINTING', ' District Name ', 'Prakasam']
[' Industry Name ', 'Padhamanabha offset printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'prakash printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'image offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'lakshman video', ' District Name ', 'Kadapa']
[' Industry Name ', 'KGN NET SHOP', ' District Name ', 'Anantapur']
[' Industry Name ', 'City graphics', ' District Name ', 'Kadapa']
[' Industry Name ', 'A S Abdul khader xerox', ' District Name ', 'Kadapa']
[' Industry Name ', 'saibaba printing press', ' District Name ', 'West Godavari']
[' Industry Name ', 'UN PRINTING WORKS', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri venkataraja printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'PIXEL DESIGN STUDIO', ' District Name ', 'Guntur']
[' Industry Name ', 'LAKSHMAN DIGITALS', ' District Name ', 'Guntur']
[' Industry Name ', 'Prabakar Arts and Painting', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI VIJAYA GANAPATHI DYE CUTTINGS', ' District Name ', 'Krishna']
[' Industry Name ', 'Nutan Offset Printers', ' District Name ', 'Krishna']
[' Industry Name ', 'ONE STOP', ' District Name ', 'Kadapa']
[' Industry Name ', 'Venkateswara paper mart', ' District Name ', 'West Godavari']
[' Industry Name ', 'SVS Printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Modern Offset Printers', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sri Ganesh Printing Press', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI SAI BALAJI DEGITAL FLEXI', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Mahodaya graphics', ' District Name ', 'Srikakulam']
[' Industry Name ', 'RK PRINT POINT', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Anusree Graphics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Bombay Digital Studio', ' District Name ', 'Guntur']
[' Industry Name ', 'SAI BALAJI CREATIONS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', '7 COLOURS PRINTING LAB', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Star digitals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SREE BALA KANAKA VIJAYA DURGA PHOTO FRAME WORKES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'RGB colours digital press', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SAMPATH OFFSET', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI ABHISHEK DIGITALS OFFSET PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Mahatma images', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Teja Internet Center', ' District Name ', 'Kadapa']
[' Industry Name ', 'DWARAKA DIGITALS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'shiva Pavani Studio', ' District Name ', 'Anantapur']
[' Industry Name ', 'Mahatma digitals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'victory studios', ' District Name ', 'Guntur']
[' Industry Name ', 'Teenage digitals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NEW SRiRAVI GRAPHICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'STAR COLOUR LAB', ' District Name ', 'Guntur']
[' Industry Name ', 'Raja Kishore offset printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Mega digitals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Srinivas Xerox', ' District Name ', 'Anantapur']
[' Industry Name ', 'Mukesh flex printing', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sri Laxmi flex and stickers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Siva xerox and cell point', ' District Name ', 'Anantapur']
[' Industry Name ', 'Varna Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Master EK Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'VASAVI GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'ABHI ART PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'Vignesh Ads', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRUJANA GRAPHICS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Visakha Signtech', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VENKATESHWARA SCREEN AND TEXTILE PRINTING WORKS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI RAJENDRA FLEX', ' District Name ', 'Anantapur']
[' Industry Name ', 'Vijaya digital', ' District Name ', 'Kadapa']
[' Industry Name ', 'star digitals', ' District Name ', 'Guntur']
[' Industry Name ', 'Padmaja Industries', ' District Name ', 'Guntur']
[' Industry Name ', 'Padma Pulp and Plastic Industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'SLS PACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'SIVASAI INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'LAKSHMI VINEELA', ' District Name ', 'West Godavari']
[' Industry Name ', 'Bharathi Enterprizes', ' District Name ', 'West Godavari']
[' Industry Name ', 'VIMALA PACKAGING', ' District Name ', 'West Godavari']
[' Industry Name ', 'BL PACKAGING', ' District Name ', 'West Godavari']
[' Industry Name ', 'SHRI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'MAHALAXMI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'SURYA SAI PACKAGING PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'BHAGYALAKSHMI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Lakshmi Package Industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'OM SRI SAI BABA PACKING PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'RAMALAKSHMI TRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'ASTA LAKSHMI INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'SLS PACKAGING', ' District Name ', 'Krishna']
[' Industry Name ', 'JESUS EGG TRAY INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'GOLUSU REDDY EGG  PACK INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Vijaya Lakshmi Pulp and Packing Industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri lakshmi Satya egg tray industry', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'gethika Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Venteswara Industries', ' District Name ', 'Krishna']
[' Industry Name ', 'sri srinivasa trays', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI BHASKARA PACKING PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sai pulp industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Lakshmi pulp products', ' District Name ', 'Krishna']
[' Industry Name ', 'MKR  INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'MSPADMAVATHI PACKAGING PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'PAVAN SUTHA PACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SARADA CHANDRA EGGPACK', ' District Name ', 'West Godavari']
[' Industry Name ', 'Ramas Fibers Products pvt ltd', ' District Name ', 'Kurnool']
[' Industry Name ', 'Meenakshi paper products', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI LAKSHMI BALAJI EGG', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Venkata Sai packaging', ' District Name ', 'Guntur']
[' Industry Name ', 'Devi  Traders', ' District Name ', 'East Godavari']
[' Industry Name ', 'ARMOUR PRO PACKAGES', ' District Name ', 'West Godavari']
[' Industry Name ', 'PREMIER PULP PACKAGES', ' District Name ', 'Krishna']
[' Industry Name ', 'BSR PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'PADHMA SRI EGG TRAY INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'poineer enterprises', ' District Name ', 'Prakasam']
[' Industry Name ', 'BSR CORTONS', ' District Name ', 'Krishna']
[' Industry Name ', 'AKSHAYA PAPER PULP PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SAI SARATH INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'MADHURI PULP INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Bhavani Pulp packers', ' District Name ', 'Chittoor']
[' Industry Name ', 'sri ramana pulp packages', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Ms HARA HARA PACKAGINGS', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI DEVI EGG TRY INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA PACKING INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Lalitha packages', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri T T S Rayudu Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri lakshmi ganapati pulp trays', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SATYA LAKSHMI GANAPATHI EGG TRAYS INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'KRIYANSH EGG TRAYS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Laxmi Ganapathi packages', ' District Name ', 'West Godavari']
[' Industry Name ', 'Srinivas kalyan industries', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri Srinivasa Tray Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'ASTALAKSHMI EGG CARE INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'KMR EGG TRAYS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Raghava Packages', ' District Name ', 'West Godavari']
[' Industry Name ', 'POORNIMA VITTANALA', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI TIRUPATHI VENKATESWARA EGG TRAYS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Rama Enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'LARVYTECH PULP PLASTIC PRODUCTS PRIVATE LIMITED', ' District Name ', 'Anantapur']
[' Industry Name ', 'BHANU SRI PAPER PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Rk Graphics', ' District Name ', 'Guntur']
[' Industry Name ', 'Aksara Digitals', ' District Name ', 'West Godavari']
[' Industry Name ', 'murthy graphics', ' District Name ', 'Guntur']
[' Industry Name ', 'Manikanta Xerox and Flexi Zone', ' District Name ', 'Srikakulam']
[' Industry Name ', 'perimul flex printing', ' District Name ', 'Guntur']
[' Industry Name ', 'RAJI STICKERING', ' District Name ', 'West Godavari']
[' Industry Name ', 'VIJETA POLY PACKS', ' District Name ', 'Guntur']
[' Industry Name ', 'ANDHRA DIGITALS', ' District Name ', 'Guntur']
[' Industry Name ', 'indian offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'SDV FLEX', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri uk printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SRI RAMA FLEX LAZER', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'jabilli creative media', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri sankar flex printing eco  led signs', ' District Name ', 'Chittoor']
[' Industry Name ', 'C ads', ' District Name ', 'Krishna']
[' Industry Name ', 'SVS DIGITALS', ' District Name ', 'Guntur']
[' Industry Name ', 'VASU DIGITALS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'GOLDEN DIGITALS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ganapathi digitals', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sree ads and signs', ' District Name ', 'Krishna']
[' Industry Name ', 'SUBHAM FLEX  DIGITAL PRINTING', ' District Name ', 'Srikakulam']
[' Industry Name ', 'VR3 CONSULTANCY SERVICE', ' District Name ', 'East Godavari']
[' Industry Name ', 'SR add agency flex printing', ' District Name ', 'West Godavari']
[' Industry Name ', 'Kanna flexi digital', ' District Name ', 'Kurnool']
[' Industry Name ', 'SREE NANDINI POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Apex Agro Equipments', ' District Name ', 'Krishna']
[' Industry Name ', 'Satyam flex and printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'RAFI ARTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Uday Kumar printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'SAI PRINTS PACK', ' District Name ', 'Krishna']
[' Industry Name ', 'friends xerox', ' District Name ', 'Srikakulam']
[' Industry Name ', 'PUJITHA INDUSTRIES UNGUTURU WGDT', ' District Name ', 'West Godavari']
[' Industry Name ', 'VENKATA NAGA LAKSHMI Papemill P Ltd', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI CHANDRA SEKHARA ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Kakatiya Papers Pvt Ltd', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI KANAKA DURGA PACKING INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'CHAITANYASAI PAPER MILLS INDIA PVT LTD', ' District Name ', 'Guntur']
[' Industry Name ', 'padamavathi cottage industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'man power industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Jayanti Boards Limited', ' District Name ', 'West Godavari']
[' Industry Name ', 'National flower material', ' District Name ', 'Kurnool']
[' Industry Name ', 'sri sai durga paper cups', ' District Name ', 'Krishna']
[' Industry Name ', 'ARKA GANAPATHI PAPER', ' District Name ', 'West Godavari']
[' Industry Name ', 'Vamshadhara Paper Mills Ltd', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SRI BUTCHI INDUSTRIES PVT LTD LEASE HOLDERS TRIVIKRAM ENTERPRISES', ' District Name ', 'West Godavari']
[' Industry Name ', 'B B Global Packings Pvt Ltd', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'sri ok printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'CUBE INDIA PAPER MILLS PVT LTD', ' District Name ', 'Prakasam']
[' Industry Name ', 'RAJARAESWASRI PAPER INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'Srinivasa Paper Industry', ' District Name ', 'Guntur']
[' Industry Name ', 'VENKATESWARA enterprises', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI RAJESWARI PAPER PLATES', ' District Name ', 'Kurnool']
[' Industry Name ', 'parimala hitech paper plates', ' District Name ', 'Kurnool']
[' Industry Name ', 'ANDHRA PAPER MART', ' District Name ', 'Krishna']
[' Industry Name ', 'Pavan Sai Paper Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'J S R PAPER PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'venkata krishna binding', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VARI PAPER CUPS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Swashakti note book industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'Chiti kanna enterprices', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Masha allah paper plate industry', ' District Name ', 'Kadapa']
[' Industry Name ', 'gayatri paper plates and cups manufacturing industry', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'kandukuri paper plate industry', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Paper square industries', ' District Name ', 'Guntur']
[' Industry Name ', 'V N AND SONS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Paper plates Manufacturing', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'V V ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'surya book makers', ' District Name ', 'Guntur']
[' Industry Name ', 'santoshapuram paper products', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'shiva sankar paper plates', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri Rama Paper Plates', ' District Name ', 'East Godavari']
[' Industry Name ', 'KRISHNA SAI ENTERPRISES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sai Paper Products', ' District Name ', 'Prakasam']
[' Industry Name ', 'pavan indu paper', ' District Name ', 'Guntur']
[' Industry Name ', 'sri vijayalakshmi cottage industries', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri sai jyothish paper plates unit', ' District Name ', 'Chittoor']
[' Industry Name ', 'SS PAPER INDUSTRIES', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI RAJESWARI ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'CSR ENTERPRISES', ' District Name ', 'Kurnool']
[' Industry Name ', 'rama binding', ' District Name ', 'Guntur']
[' Industry Name ', 'binding works', ' District Name ', 'East Godavari']
[' Industry Name ', 'manasa book manufactures', ' District Name ', 'Guntur']
[' Industry Name ', 'lakshmi binding works', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SRINIVASA GRAPHICD', ' District Name ', 'Srikakulam']
[' Industry Name ', 'sri sai printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'ARUNODAYA PRINTERS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'RAJU BINDING WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI GAYATRI BOOK BINDING WORKS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Mahalakshmi binding', ' District Name ', 'Krishna']
[' Industry Name ', 'jagadeeswari binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Venkateswara Book Stores', ' District Name ', 'West Godavari']
[' Industry Name ', 'Jai bharathi offset printers', ' District Name ', 'Krishna']
[' Industry Name ', 'hema binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'Lathish binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Kanaka Durga Web Offset Printers', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri laxmi art press', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'konaseema binding works', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI KALKI BINDING WORKS AND GRAPHICK', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Ujvala printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Srinivasa Binding Works', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Nagesh Binding Works', ' District Name ', 'Krishna']
[' Industry Name ', 'Smart kids', ' District Name ', 'Krishna']
[' Industry Name ', 'UMA MAHESWARA BINDING AND GENERAL STORES', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri Satya Sai Printers  Stationars', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VIJAYABHARATHI ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'LG FILE AND PRINTING WORK', ' District Name ', 'Krishna']
[' Industry Name ', 'Simhadri book binding', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'THE chittoor district coperative printing press limited', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri Lakshmi ganapathi images', ' District Name ', 'East Godavari']
[' Industry Name ', 'Raja Offset printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'S R PUBLICATIONS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VENKATA SAI LAKSHMI PRINTING AND BINDING WORKS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'RVS cottage industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'Geethika Books manufacturing', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI BINDING WORKS', ' District Name ', 'West Godavari']
[' Industry Name ', 'RAMESH BINDERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sri Lakshmi graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Daya Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'ABI graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Laxmi Bhavani Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI TRIVEDITHA PACKING INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'VIGNESH PACKAGING', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sree Padma Srinivasa Pulp And Egg Tray industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'Srinivasa Pulp and packages', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Ramakrishna egg packages', ' District Name ', 'West Godavari']
[' Industry Name ', 'Cherisha Industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'PSR PULP PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri karthikeya Industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'LAKSHMI GANAPATHI PAPER BOARDS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI VENKATASAIDURGA HANDMADE PAPER BOARDS', ' District Name ', 'Guntur']
[' Industry Name ', 'Uma Shankar Card board Industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'JAI VIJAYA PAPER  BOARDS', ' District Name ', 'West Godavari']
[' Industry Name ', 'VENKATESWARA MILL BOARD', ' District Name ', 'West Godavari']
[' Industry Name ', 'ARUNA BOARD MILL', ' District Name ', 'West Godavari']
[' Industry Name ', 'AKULA BOARDS PVT LTD', ' District Name ', 'West Godavari']
[' Industry Name ', 'vyshnavi sai poly pack', ' District Name ', 'Guntur']
[' Industry Name ', 'pragna enterprises', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI LAKSHMI PRASANNA TRADERS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SEVEN HILLS PACKAGING', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Friends bindings', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri Lakshmi Paper Boards', ' District Name ', 'Krishna']
[' Industry Name ', 'Lakshmi madhavi paper board', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI BALAJI INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SIVA KRISHNA MINI SUNDRY BOARD', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI DHARANI CARDBOARD INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri vigneshwara photostat', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI BALAVINAYAGAR PAPER PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI LAKSHMI PRASANNA AGRO PAPER INDUSTRIES LIMITED', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI MITRA PAPER PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'HEMALATHA BINDING WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'SUGUNA PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'lalitha printing works', ' District Name ', 'West Godavari']
[' Industry Name ', 'Devi binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'SRIRAMA LINGESWARA BOOK BINDING', ' District Name ', 'East Godavari']
[' Industry Name ', 'VENKATESHWARA BOOK SHALLARS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SURYA CHANDRA INDUSTRIES', ' District Name ', 'Kadapa']
[' Industry Name ', 'LAKSHMI BINDINGS', ' District Name ', 'Krishna']
[' Industry Name ', 'azeez book binding centre', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI SAI PAPER PRODUCTS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SRI ARKA PAPER PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'GOPI BOOK MAKERS PRIVATE LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'RAJA RAJESWARI BINDING WORKS', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI VENKATESWARA Offset Printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'BK Screen Processes and Paper Mart', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Ganesh Murthy and Son Binding Works', ' District Name ', 'Guntur']
[' Industry Name ', 'Lakshmi Offset Printers', ' District Name ', 'Guntur']
[' Industry Name ', 'OMKAR OFFSET PRINTERS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Varna Print Tech', ' District Name ', 'Krishna']
[' Industry Name ', 'PARVATHI OMKAR PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'venu offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Rajdhani  Offset Printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Srinivasa Offset Printers', ' District Name ', 'Guntur']
[' Industry Name ', 'sri sairam printets', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Gayatri Printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'ESWARAMBA PRINTERS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SIVA SANKARA PRINTERS', ' District Name ', 'Prakasam']
[' Industry Name ', 'PRASANNA OFFSET PRINTERS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'sree GouriShankar printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'DEVI CREATIONS', ' District Name ', 'Guntur']
[' Industry Name ', 'Lakshmi Web offset', ' District Name ', 'West Godavari']
[' Industry Name ', 'SV offset printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'sree krishna offset printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'sree Godha printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sri Venkata Ramana offset printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'RR Ads', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri subhamasthu cards', ' District Name ', 'Guntur']
[' Industry Name ', 'Sai Sreenivasa printers', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Nirmala Cards and Stationery', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI PRASAD PRINTING WORKS', ' District Name ', 'Guntur']
[' Industry Name ', 'mokshith offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Nirmala Offset Printers And Traders', ' District Name ', 'Krishna']
[' Industry Name ', 'GOLDEN OFFSET PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI NARENDRA PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'SWATHI GRAPHICS', ' District Name ', 'Guntur']
[' Industry Name ', 'Renuka Offset Press', ' District Name ', 'Krishna']
[' Industry Name ', 'AS Ofset Printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'CREATIVE OFFSET', ' District Name ', 'West Godavari']
[' Industry Name ', 'New Anuteja Offset Press', ' District Name ', 'Krishna']
[' Industry Name ', 'Majetys', ' District Name ', 'Guntur']
[' Industry Name ', 'DEVI CARDS', ' District Name ', 'Guntur']
[' Industry Name ', 'NEW LIFE OFFSET PRINTERS', ' District Name ', 'Krishna']
[' Industry Name ', 'ZEENATH OFFSET PRESS', ' District Name ', 'West Godavari']
[' Industry Name ', 'kajakhadeer rice and flour mill', ' District Name ', 'Guntur']
[' Industry Name ', 'LG OFFSET PRINTERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Kanaka Mahalakshmi Offset Printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NATIONAL OFFSET PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Sri Pavan offset printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'BALU GRAPHICS AND OFFSET PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Madhav Envelops', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VARANASI PRINTING PRESS', ' District Name ', 'Prakasam']
[' Industry Name ', 'G K PRINT HOUSE PRIVATE LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'V S R PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Siva multi colour off set printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sri  Navya offcet printers', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SaiBaba Offset printing', ' District Name ', 'Kadapa']
[' Industry Name ', 'Vasavi Offset Printers', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Rama Durga offset printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'VAGDEVI PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Surya Offset Printers', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri Karthikaya Ofset Printer', ' District Name ', 'Srikakulam']
[' Industry Name ', 'AKSHAY OFFSET PRINTERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SEVIKA SCREENS AND PRINTING WORKS', ' District Name ', 'Guntur']
[' Industry Name ', 'Hitech Print Systems Limited', ' District Name ', 'Krishna']
[' Industry Name ', 'Nagendra Enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'Srinu Screens', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Anu offset printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Surya printers', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Krishna flex printing', ' District Name ', 'Anantapur']
[' Industry Name ', 'saradha press', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VENKATA LAKSHMI POWER PRESS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SRILEKHA WEB PRINTER', ' District Name ', 'Krishna']
[' Industry Name ', 'SANJANA FLEXI PACK PVT LIMITED', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI BALAJI PRINTERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Jhansi Laksmi printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI VENKATESHWARA OFFSET PRINTING', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Universal printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Maruthi Printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Golden offset printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'sri sai lakshmi offset printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VARAHI OFFSET PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'sudeep graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Jayalakshmi printing press', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sarada offset printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'BEZAWADA OFFSET PRINTERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sai Datta offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'all latest binding works', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'muni sri vigneswara graphics and offset printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'ASHWINI PRINTERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'PANCHAMUKHI BABA OFFSET PRINTERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'LAKSHMI OFFSET PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'Raghavendra offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Rafi Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'city grapgics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sri Ganesh Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI PAVAN GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Akshara Graphics and Offset Printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Giri Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Himalaya printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Usodaya Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'DAMU GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Navodaya Graphics and Binding Works', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'KARTHIKEYA AGENCIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sri Satya Sai Printers and Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Model Graphis', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI VIGNESWARA GRAPHICS AND OFFSET PRINTERS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'padmavathi offset', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Malik Printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Gowthan Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SAI GEETHESH GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Kamakshi Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sree Vani Printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI VENKATESWARA GRAPHICS AND XEROX', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SuJATHA OFFSET PRINTING AND BOOK BINDING', ' District Name ', 'Chittoor']
[' Industry Name ', 'OM ART PRINT', ' District Name ', 'Krishna']
[' Industry Name ', 'NANDHIVARDHAAN', ' District Name ', 'Anantapur']
[' Industry Name ', 'SATYA PACKAGING', ' District Name ', 'Krishna']
[' Industry Name ', 'tirumala packagings', ' District Name ', 'Guntur']
[' Industry Name ', 'Azmeeri Screens', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI LAKSHMI PACKAGES', ' District Name ', 'East Godavari']
[' Industry Name ', 'LIMRA PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'NARAYANA MILL BOARD', ' District Name ', 'West Godavari']
[' Industry Name ', 'Chowdeshwari Packers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sri bhavani Gayatri packaging', ' District Name ', 'East Godavari']
[' Industry Name ', 'K L INDUSTRIES', ' District Name ', 'Kadapa']
[' Industry Name ', 'BISILLAH NON WOVEN BAGS', ' District Name ', 'Krishna']
[' Industry Name ', 'sanjana flexi pack private limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Parjanya Paper products', ' District Name ', 'Guntur']
[' Industry Name ', 'Keerthi note book industry', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SREE NANDINI KRAFT BOARDS PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'swaranandhra pakages', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI RAMALINGESWARA PAPER PRODUCTS PRIVATE LIMITED', ' District Name ', 'East Godavari']
[' Industry Name ', 'sree surya gayatri cottage industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'Veeranjaneya Enterprices and Paper Products', ' District Name ', 'East Godavari']
[' Industry Name ', 'DELTA PAPER MILLS LIMITED', ' District Name ', 'West Godavari']
[' Industry Name ', 'Rich cover', ' District Name ', 'Chittoor']
[' Industry Name ', 'RACHANA PLASTICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Sri lakshmi gayatri paper board', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'PVR paper products', ' District Name ', 'Anantapur']
[' Industry Name ', 'vishnu priya paper products', ' District Name ', 'West Godavari']
[' Industry Name ', 'chowdeswari paper plates', ' District Name ', 'Kadapa']
[' Industry Name ', 'venkataramana printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'V S INDUSTRIES', ' District Name ', 'Kurnool']
[' Industry Name ', 'udayani offset printing', ' District Name ', 'West Godavari']
[' Industry Name ', 'ganesh binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'durga Bhavani binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'Pavan binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'Jaya surendra binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'sai durga binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'sri Lalitha labour binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'Ten industries', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'kameshwara rao', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SRI VINAYAKA PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'NOOKAMBIKA OFFSET PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Subha Gayathri Sundry Board and Board Works', ' District Name ', 'West Godavari']
[' Industry Name ', 'Chandu xerox', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Anujothi Enterprises', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'RAJADHANI PRINTERS AND PAPER PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SIVA PAPER PRODUCTS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'MALLESWARA POWER PRESS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI LAKSHMI PAPERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'M N C PACKAGING', ' District Name ', 'Chittoor']
[' Industry Name ', 'Mounica Packages', ' District Name ', 'Guntur']
[' Industry Name ', 'Coastal Andhra Paper Products', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SAI INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'venkata padmavathi paper products', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SAI PAPER PLATES', ' District Name ', 'Kurnool']
[' Industry Name ', 'SAI TEJA PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SEETHA RAMANJANEYA DISPOSAL PRODUCTS', ' District Name ', 'Guntur']
[' Industry Name ', 'KINGTOP', ' District Name ', 'Chittoor']
[' Industry Name ', 'seshgiri Saketh Paper', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VEERABHADRA CARTONS AND PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VIJAYSRI PACKAGING', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI TIRUPATHI PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Tirupathi paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'webpros Solutions Pvt ltd', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Tulasi enterprises', ' District Name ', 'Anantapur']
[' Industry Name ', 'SESHU BINDING WORKS', ' District Name ', 'Prakasam']
[' Industry Name ', 'SRI RAMA PAPER PRODUCTS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'KL INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'KRISHNA CHAITANYA INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'Maha lakshmi paper plates', ' District Name ', 'East Godavari']
[' Industry Name ', 'C P PAPERS', ' District Name ', 'Guntur']
[' Industry Name ', 'Surya paper products', ' District Name ', 'West Godavari']
[' Industry Name ', 'Quality offset printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Chakriya Enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'Naga process', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Jayakala paper works', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI SAI GANESH INDUSTRY', ' District Name ', 'Chittoor']
[' Industry Name ', 'SUBHASHINI PAPER PRODUCTS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'CHANDRA SEKHARA PRINTERS', ' District Name ', 'Guntur']
[' Industry Name ', 'KVIANINC', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'LAKSHMI SRINIVASA PAPER PRODUCTS', ' District Name ', 'Guntur']
[' Industry Name ', 'SHREE LAKSHMI NOTE BOOKS', ' District Name ', 'Kurnool']
[' Industry Name ', 'MS C J R PAPER PLATE INDUSTRY', ' District Name ', 'Kurnool']
[' Industry Name ', 'madeena paper prpducts', ' District Name ', 'Kurnool']
[' Industry Name ', 'Lotus Paper Products', ' District Name ', 'Anantapur']
[' Industry Name ', 'nsr paper bags', ' District Name ', 'East Godavari']
[' Industry Name ', 'Lakshmi Tulasi Industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'LAKSHMI NARASIMHA PACKAGES', ' District Name ', 'Guntur']
[' Industry Name ', 'Amaravati bags', ' District Name ', 'Kadapa']
[' Industry Name ', 'CHARIS POLYMERS', ' District Name ', 'Krishna']
[' Industry Name ', 'Mahalakshmi industry s', ' District Name ', 'Krishna']
[' Industry Name ', 'Siva baba industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'VIJAYA POLY FLEX INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Bharath papaer bags', ' District Name ', 'Anantapur']
[' Industry Name ', 'NH PAPER BAG PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sri Raja Rajeswari Enterprises', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'sri Lalita enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'Green Packs Enterprises', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sree Mutharamman Saravana Bags', ' District Name ', 'Chittoor']
[' Industry Name ', 'BALAJI ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'JYOTHI ENTERPRISES', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI KANAKA DURGA', ' District Name ', 'Krishna']
[' Industry Name ', 'SAI DURGA BOX MAKING', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Rajeshwari Paper Products', ' District Name ', 'Krishna']
[' Industry Name ', 'Ramgopal Idustries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MARUTHI PACKAGINGS', ' District Name ', 'Guntur']
[' Industry Name ', 'MTM SERVICES', ' District Name ', 'Krishna']
[' Industry Name ', 'Naga malleswari envelop', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VIJAYA KRISHNA PULP PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'paper craft', ' District Name ', 'Anantapur']
[' Industry Name ', 'Continental Cartons', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI VENKATESWARA PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'Sree Ramakrishna Industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'Srinivasa box making', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRIVARI PACKING SOLUTIONS', ' District Name ', 'Chittoor']
[' Industry Name ', 'GIRI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'SHIRDI SAI PAPER PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'UNIVERSAL PACKAGING INDUSTRY', ' District Name ', 'Kadapa']
[' Industry Name ', 'sri durga gayatri paper cones', ' District Name ', 'West Godavari']
[' Industry Name ', 'SAI PRIYANKA CONES', ' District Name ', 'West Godavari']
[' Industry Name ', 'OM INDUSTRY', ' District Name ', 'West Godavari']
[' Industry Name ', 'SREE VENKATARAYA PRINTERS AND PACKERS PVT LTD', ' District Name ', 'West Godavari']
[' Industry Name ', 'gowthami greentech india pvt ltd', ' District Name ', 'West Godavari']
[' Industry Name ', 'TIRUMALA TEX CONES', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri sai Balaji paper cones', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI PAPER PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Surya Kones', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI DHANALAKSHMI PAPER CONES', ' District Name ', 'Prakasam']
[' Industry Name ', 'sr paper products', ' District Name ', 'Guntur']
[' Industry Name ', 'Friends Paper Products', ' District Name ', 'Kadapa']
[' Industry Name ', 'Godavari paper cups', ' District Name ', 'East Godavari']
[' Industry Name ', 'BHAVAN PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'sprint paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'Rishi paper cups', ' District Name ', 'Guntur']
[' Industry Name ', 'NAVYATHA INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'lakshmi prasuna paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'Sai sri jashvitha', ' District Name ', 'Krishna']
[' Industry Name ', 'AL Kabeer  automotive engineering worksnp', ' District Name ', 'Krishna']
[' Industry Name ', 'AMRUTHA PAPER CUPS', ' District Name ', 'Krishna']
[' Industry Name ', 'Priya paper Products', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Venkateswara paper products', ' District Name ', 'Chittoor']
[' Industry Name ', 'TVR PAPER PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'R AND R PAPER CUPS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'INDIAN INDUSTRIES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri paadha Jyothi Sri Paper products', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRINIDHI PAPER PRODUCTS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SWECHCHA PAPER PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI MAHALAKSHMI PAPER CUPS', ' District Name ', 'Chittoor']
[' Industry Name ', 'LAKSHMI PAPER INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'Khaja Industries', ' District Name ', 'Kadapa']
[' Industry Name ', 'Manufactured paper and paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI BALAJI TRADERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'tejaswi industries', ' District Name ', 'Krishna']
[' Industry Name ', 'Uma Devi Paper Cup Manufacturers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SHIVA SHANKAR ENTERPRISES', ' District Name ', 'Srikakulam']
[' Industry Name ', 'SRI LAKSHMI NARASIMHASWAMY PAPER CUPS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SRI BALAJI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'KSN POLYCOATERS LLP', ' District Name ', 'Prakasam']
[' Industry Name ', 'Velankani paper cups industry', ' District Name ', 'East Godavari']
[' Industry Name ', 'NV industries', ' District Name ', 'Anantapur']
[' Industry Name ', 'KRISHNA SATYA PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'Jai sree paper products', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SAI PAPER CUPS AND PLATES PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'UNIQUE PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'SPRINT PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'Abhinaya Paper Cups and Plates', ' District Name ', 'Chittoor']
[' Industry Name ', 'SAKUNTALA ENTERPRAISES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRISAIBALAJIS RAMA PAPER PRODUCTS', ' District Name ', 'Krishna']
[' Industry Name ', 'VENNALA PAPER CUPS INDUSTRY', ' District Name ', 'Anantapur']
[' Industry Name ', 'AMARESWAR PAPER CUPS', ' District Name ', 'Anantapur']
[' Industry Name ', 'sri balaji paper products', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sai Rameswara Enterprises', ' District Name ', 'Kurnool']
[' Industry Name ', 'SREE LAKSHMI ENTERPRISES', ' District Name ', 'Anantapur']
[' Industry Name ', 'VEDASAI TRADERS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sairam paperplates', ' District Name ', 'Srikakulam']
[' Industry Name ', 'daivamamma paper plate industry', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Srinivasa Paper Plates', ' District Name ', 'East Godavari']
[' Industry Name ', 'ASS INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'chakradhara paper products', ' District Name ', 'Guntur']
[' Industry Name ', 'Chamundeswari Cottage', ' District Name ', 'Krishna']
[' Industry Name ', 'VIGNESWARA PAPER PLATES', ' District Name ', 'Guntur']
[' Industry Name ', 'SAI MANIKANTA PAPER PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'sree lalitha paper plates', ' District Name ', 'Guntur']
[' Industry Name ', 'THANNUSWI INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI SATYASAIPAPER PLATES', ' District Name ', 'West Godavari']
[' Industry Name ', 'lakshmi devi paper products', ' District Name ', 'West Godavari']
[' Industry Name ', 'Mukesh cottage industry', ' District Name ', 'West Godavari']
[' Industry Name ', 'BHAGYA LAKSHMI PAPER PRODUCTS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'DEVI SRI PAPER PLATE INDUSTRY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Durga Paper Plates', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'KANAKADURGA PAPER PLATES', ' District Name ', 'West Godavari']
[' Industry Name ', 'kadhirvelu paper plates products', ' District Name ', 'Chittoor']
[' Industry Name ', 'Gajalakshmi paper palate works', ' District Name ', 'Chittoor']
[' Industry Name ', 'Navya Paper Plates', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI GOWRI PAPER PRODUCTS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'bhavyasri industries', ' District Name ', 'Kadapa']
[' Industry Name ', 'MAA Plates', ' District Name ', 'Krishna']
[' Industry Name ', 'SHREE VENKATESWARA ENTERPRISES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri Nookambika paperplates', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'S S Paper products', ' District Name ', 'West Godavari']
[' Industry Name ', 'Lakshmi Ganesh Paper Products', ' District Name ', 'Chittoor']
[' Industry Name ', 'VEERABABU PAPER PLATES', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Star Traders', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Satya Paper Plates', ' District Name ', 'Kadapa']
[' Industry Name ', 'paper plate', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'MRS PAPER PRODUCTS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Mercy paper products', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'KOREISSH FOOD PRODUCTS MANUFACTURING AND PACKING UNIT', ' District Name ', 'Krishna']
[' Industry Name ', 'Sri Laxmi Bhavani Paper Plates', ' District Name ', 'Srikakulam']
[' Industry Name ', 'sree paper plates manufacturing', ' District Name ', 'East Godavari']
[' Industry Name ', 'Durgha Bhavani Paper plate Manufacturing', ' District Name ', 'Kadapa']
[' Industry Name ', 'NAIK ENTERPRISES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VIRAJITHA TRADING COMPANY', ' District Name ', 'East Godavari']
[' Industry Name ', 'Niharika paper plate manufacturing', ' District Name ', 'Kadapa']
[' Industry Name ', 'Manikanta Plates', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'VENKATESWARA  PP INDUSTRIES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI VENKATESWARA ENTERPRISE', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri Venkateswara Industries', ' District Name ', 'Srikakulam']
[' Industry Name ', 'JANAKI PACKING PAPER PRODICTS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sri Jyothi paper plates', ' District Name ', 'Srikakulam']
[' Industry Name ', 'sri Mallikarjuna Swamy decordicators', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'surya konversions', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Agastheswara Paper Products', ' District Name ', 'Srikakulam']
[' Industry Name ', 'LAKSHMI GANAPATHI PAPER PLATES INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'chitneedi Ram Manohar', ' District Name ', 'East Godavari']
[' Industry Name ', 'LAKSHMI GANAPATHI PAPER MOULDING WORKS', ' District Name ', 'Krishna']
[' Industry Name ', 'Saketh Paper products', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI PRAKASA PAPER PLATES PRODUCTIONS', ' District Name ', 'Guntur']
[' Industry Name ', 'SEETHARAMA INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI SAI DATTA FIBERS AND PAPER PRODUCTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Lavanya industries', ' District Name ', 'Chittoor']
[' Industry Name ', 'JAYALAKSHMI ENTERPRISES', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI VENKATESA PAPER PRODUCT', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI MANIKANTA PAPER PRODUCTS', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'Sri Ayyappa paper plates', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Srinivasa Paper Plates', ' District Name ', 'Anantapur']
[' Industry Name ', 'Chandu raw material', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Manikala enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'Ramakrishna Enterprise', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri siddeswara enterprises', ' District Name ', 'Chittoor']
[' Industry Name ', 'lakshmi paper plates industry', ' District Name ', 'Kurnool']
[' Industry Name ', 'SRI RAGHAVENDRA PAPER PLATE INDUSTRY', ' District Name ', 'Kurnool']
[' Industry Name ', 'shri Vinaya neeharika industrial paper products', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'VRK PAPER PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sri Pawan Industries', ' District Name ', 'Guntur']
[' Industry Name ', 'S S Paper products', ' District Name ', 'Guntur']
[' Industry Name ', 'Sri gowru polamma talli paper plates and pens', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri Venkatesa Paper Products', ' District Name ', 'East Godavari']
[' Industry Name ', 'Akhil Paper Plates', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI LAKSHMI NARAYANA PAPER CUPS', ' District Name ', 'Krishna']
[' Industry Name ', 'sri vijayalakshmi paper products', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI HANUMAN PAPER PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'SATYA ECO PRODUCTS', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri sai paper industries', ' District Name ', 'West Godavari']
[' Industry Name ', 'JAYA LAKSHMI PAPER CUP INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'VENU PAPER PLATES', ' District Name ', 'Kurnool']
[' Industry Name ', 'Syed traders', ' District Name ', 'Kadapa']
[' Industry Name ', 'VARSHI PAPER PLATES', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'KOMALI TRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Siva naga  mallikarjuna enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'SRI VASAVI PRINT PACK', ' District Name ', 'Krishna']
[' Industry Name ', 'SANGEETHA ENTERPRISES', ' District Name ', 'Chittoor']
[' Industry Name ', 'Aruna Sree Paper Cups and Plates', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'GIRI INDUSTRIES', ' District Name ', 'Anantapur']
[' Industry Name ', 'BHARGAV RAM INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Lakshmi paper', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri laxmi narasimha paper cup', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SRI SAI TULASI CUP AND PLATES MANUFACTURERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'SRI SHANTI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'sri sai ram industry', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri sai siva enterprises', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'KGN PAPER PLATES AND CUPS', ' District Name ', 'Chittoor']
[' Industry Name ', 'G S Paper plates industry', ' District Name ', 'Anantapur']
[' Industry Name ', 'SHIRDI SAI INDUSTRIES', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI MARUTI PAPER PLATES', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sri sai enterprises', ' District Name ', 'East Godavari']
[' Industry Name ', 'K N R PAPER PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'VISHAL INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'MANI PAPER PLATES', ' District Name ', 'Srikakulam']
[' Industry Name ', 'GURU EEKSHITH PAPER PRODUCTS', ' District Name ', 'Kadapa']
[' Industry Name ', 'Vijaya Sai Paper Products', ' District Name ', 'Krishna']
[' Industry Name ', 'SN PAPER PRODUCTS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'simhadri appanna natural isthiraku paper plates', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'bhargavi paper product', ' District Name ', 'Srikakulam']
[' Industry Name ', 'OMKAR PAPER PRODUCTS', ' District Name ', 'Chittoor']
[' Industry Name ', 'RAM INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'VENKATESWARA PUBLICATION', ' District Name ', 'Guntur']
[' Industry Name ', 'SIVA SANKARA PAPER MILLS', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sri Hari Impex', ' District Name ', 'Krishna']
[' Industry Name ', 'BHAVANI SHANKAR TRADERS', ' District Name ', 'West Godavari']
[' Industry Name ', 'PRIDE TRADING COMPANY', ' District Name ', 'Krishna']
[' Industry Name ', 'SHIVA ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Rajesh envolope works', ' District Name ', 'Krishna']
[' Industry Name ', 'global packaging', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'VAIBHAV CARDS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Harshitha print pack', ' District Name ', 'Krishna']
[' Industry Name ', 'Rural Educational Services', ' District Name ', 'Chittoor']
[' Industry Name ', 'Techno Board Private Limited', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri jagannatha papers and cartons', ' District Name ', 'Srikakulam']
[' Industry Name ', 'MS KORA PACK PRIVATE LIMITED', ' District Name ', 'Chittoor']
[' Industry Name ', 'NAVYA PACKING INDUSTRY', ' District Name ', 'Krishna']
[' Industry Name ', 'CAG INDUSTRIES', ' District Name ', 'West Godavari']
[' Industry Name ', 'noor xerox point', ' District Name ', 'Guntur']
[' Industry Name ', 'Madhavi paper industry', ' District Name ', 'Krishna']
[' Industry Name ', 'Hindu Enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'AMMAN POLY PACKS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SURENDRA PAPER CUPS', ' District Name ', 'Chittoor']
[' Industry Name ', 'siva prasad paper tube manufacturers', ' District Name ', 'Guntur']
[' Industry Name ', 'NM CORES', ' District Name ', 'East Godavari']
[' Industry Name ', 'Pratibha printers', ' District Name ', 'Kadapa']
[' Industry Name ', 'SREE SAI LAKSHMI GRAPHICS', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI HARI XEROX STORE', ' District Name ', 'Anantapur']
[' Industry Name ', 'BOSU BABU TUMMALA PRINTERS BINDING', ' District Name ', 'Krishna']
[' Industry Name ', 'pasuparthy polymers Pvt ltd', ' District Name ', 'Chittoor']
[' Industry Name ', 'venkata chowdari xerox center', ' District Name ', 'Anantapur']
[' Industry Name ', 'Lakshmi Dwaraka Printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Venu Internet n xerox', ' District Name ', 'Kadapa']
[' Industry Name ', 'TECHNICAL PUBLISHERS', ' District Name ', 'Guntur']
[' Industry Name ', 'Viswa offset printers', ' District Name ', 'Guntur']
[' Industry Name ', 'sanjeev yaswanth xerox', ' District Name ', 'Kadapa']
[' Industry Name ', 'ANDHRA OFFSET', ' District Name ', 'Krishna']
[' Industry Name ', 'vishnavi printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Bharani Arts', ' District Name ', 'Krishna']
[' Industry Name ', 'Bhupal Xerox Center', ' District Name ', 'Anantapur']
[' Industry Name ', 'National printets', ' District Name ', 'Kadapa']
[' Industry Name ', 'DAD XEROX', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'GJR PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SKML PRINTERS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SAI LAKSHMI NARASIMHA XEROX CENTER', ' District Name ', 'Anantapur']
[' Industry Name ', 'SAI BUISNESS FORMS', ' District Name ', 'Guntur']
[' Industry Name ', 'sri raghava ghraphics', ' District Name ', 'Guntur']
[' Industry Name ', 'ganga xeroxes', ' District Name ', 'Anantapur']
[' Industry Name ', 'VS PRINTERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'pagan offset printers', ' District Name ', 'Prakasam']
[' Industry Name ', 'sunitha enterprise', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sri lakshmi Srinivasa offset printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Maruti Printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI KANAKADURGA SCREEN PRINTERS', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Sri sriven offset printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'RAINBOW HALLOGRAPHICS PRIVATE LIMITED', ' District Name ', 'East Godavari']
[' Industry Name ', 'VIJAYAVANI PRINTERS', ' District Name ', 'Chittoor']
[' Industry Name ', 'GOPI GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'PRASAD STUDIO', ' District Name ', 'Guntur']
[' Industry Name ', 'Pavani Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'prema graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Amulya Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'sri balaji graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'ADITHYA GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'master graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Yeswanthi Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Aniesh Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Srujana offset printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SAI TEJA GRAPHICS  OFFSET PRINTERS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'uttam graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Vandhana Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'JK Binding and Printing Works', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Sri Sindhu Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'New Sri Dhana Lakshmi Xerox', ' District Name ', 'Kurnool']
[' Industry Name ', 'MS AKSHARA PRINTERS', ' District Name ', 'Kurnool']
[' Industry Name ', 'Vedhika Multicolour Press', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ENTERPRISES', ' District Name ', 'Guntur']
[' Industry Name ', 'Ayyappa Printing Press', ' District Name ', 'Srikakulam']
[' Industry Name ', 'BAPATLA GRAPHICS', ' District Name ', 'Guntur']
[' Industry Name ', 'navatha art printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'DD OFFSET PRINTERS  BINDING', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sree Nitya Printers and Paper Mart', ' District Name ', 'Krishna']
[' Industry Name ', 'Saptagiri printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI LAKSHMINARAYANA LITHO  PRINTING   WORKS', ' District Name ', 'East Godavari']
[' Industry Name ', 'KIRAN PRINTING WORKS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Swarnadurga Offset Printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri vasavi offset printers', ' District Name ', 'Prakasam']
[' Industry Name ', 'Jawalker Offset Printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'HARANATH PRINTERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SURYA OFFSET PRINTERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'sai lakshmi printers', ' District Name ', 'Guntur']
[' Industry Name ', 'Srinivasa Zerox', ' District Name ', 'Kadapa']
[' Industry Name ', 'Sneha litho', ' District Name ', 'Guntur']
[' Industry Name ', 'M A ARMUGAM', ' District Name ', 'Anantapur']
[' Industry Name ', 'Sharadha printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Malli stickers shop', ' District Name ', 'Kadapa']
[' Industry Name ', 'sri Venkateswara offset printers', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri krishna printing and binding works', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'saritha flex', ' District Name ', 'Vizianagaram']
[' Industry Name ', 'SYAMALA OFFSET AND  SCREENS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Uttam Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Ramya printers and binders', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Manmohan sales and servicing private limited', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SAI DURGA PAPER MART AND PRINTING AND BINDING', ' District Name ', 'East Godavari']
[' Industry Name ', 'LAKSHMI HAMSINI BOOK BINDING WORKS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI BALA BALAJI PRINTERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'sri vijaya lakshmi power press and dtp works', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI VIJAYA DURGA OFFSET  SCREENS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Eshwar Graphics', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sai Tirumala Offset', ' District Name ', 'East Godavari']
[' Industry Name ', 'VISAKHA PRINT HOUSE', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'UNIVERSAL PRINT SYSTEMS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'BILLA OFFSET PRINTERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Naga Venkataramana Offset', ' District Name ', 'East Godavari']
[' Industry Name ', 'DURGA XEROX  COLOUR XEROX', ' District Name ', 'East Godavari']
[' Industry Name ', 'sri  akshaya enterprises wedding cards and Printers', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI LAKSHMI BHAVANI BOOKS  BINDING WORKS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI LAKSHM DURGA OFFSET PRINTERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SAI SCREENS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'Murugan Graphics', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'HANU GRAPHICS', ' District Name ', 'Krishna']
[' Industry Name ', 'RADHAKRISHNA POWER PRESS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SATYA BHADRA OFFSET PRINTERS', ' District Name ', 'East Godavari']
[' Industry Name ', 'SPHURTHY PUBLICATIONS PRIVATE LIMITED', ' District Name ', 'Krishna']
[' Industry Name ', 'BHARATH PRESS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SREE SESHASAI ENTERPRISES', ' District Name ', 'Krishna']
[' Industry Name ', 'SREERAMA PRINTING WORKS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SRI THIRUMALA OFFSET PRINTERS', ' District Name ', 'Anantapur']
[' Industry Name ', 'SREE LAKSHMI PRESS', ' District Name ', 'Guntur']
[' Industry Name ', 'S L N PRINTING PRESS', ' District Name ', 'Anantapur']
[' Industry Name ', 'PRINTING PRESS', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'SRI SRINIVASA  PRESS', ' District Name ', 'Anantapur']
[' Industry Name ', 'LIPI OFFSET PRINTS', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Mookambika offset printers', ' District Name ', 'Anantapur']
[' Industry Name ', 'Crystal imagings', ' District Name ', 'Guntur']
[' Industry Name ', 'SRI Vinayaka digital Printers', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SATYANARAYANA PRINTING PRESS', ' District Name ', 'Prakasam']
[' Industry Name ', 'Sri Sainavya Designs', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Aruna Rubber Stamps and Printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Aishwarya Art Printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'PARVATHI GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'RK Art Printers', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'padma garphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Chandana Graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'pavangraphics and materials', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'balaji graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI SIVASAI GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Ramugraphcis', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Pallavi graphics', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'SRI BALAJI GRAPHICS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'CHARAN GRAPHICS  AND BINDING WORKS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'Akshara Printers', ' District Name ', 'Chittoor']
[' Industry Name ', 'S R PRINTS LABELS', ' District Name ', 'Krishna']
[' Industry Name ', 'SHREE BALAJI GRAPHICS', ' District Name ', 'Chittoor']
[' Industry Name ', 'SRI SIVA TRADING COMPANY', ' District Name ', 'West Godavari']
[' Industry Name ', 'sri durga enterprise', ' District Name ', 'Guntur']
[' Industry Name ', 'Venkatesvara Agro Paper Products Pvt Ltd', ' District Name ', 'East Godavari']
[' Industry Name ', 'Sri Rama Krishna Hand Make Board', ' District Name ', 'East Godavari']
[' Industry Name ', 'vijayadurga paper board', ' District Name ', 'West Godavari']
[' Industry Name ', 'Pushpalatha paper plates production', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'L G R Pulp Packers', ' District Name ', 'Chittoor']
[' Industry Name ', 'SIVA SAI PACKAGING INDUSTRY', ' District Name ', 'Kurnool']
[' Industry Name ', 'Sri Malakonda Swamy timber depot and saw mill', ' District Name ', 'Krishna']
[' Industry Name ', 'sri lakshmi traders', ' District Name ', 'Chittoor']
[' Industry Name ', 'Vasu industries', ' District Name ', 'East Godavari']
[' Industry Name ', 'Gayatri enterprises', ' District Name ', 'Krishna']
[' Industry Name ', 'KKR PAPER BOARDS', ' District Name ', 'Chittoor']
[' Industry Name ', 'Kavya Manikanta Binding works', ' District Name ', 'Krishna']
[' Industry Name ', 'GoGreen Industries', ' District Name ', 'Visakhapatnam']
[' Industry Name ', 'vasavi print links', ' District Name ', 'West Godavari']
[' Industry Name ', 'HITHA INDUSTRIES', ' District Name ', 'Krishna']
[' Industry Name ', 'NAYAGARA PAPER BAG WORKS', ' District Name ', 'Guntur']
[' Industry Name ', 'COASTAL AGRO INDUSTRIES LIMITED UNIT-IV', ' District Name ', 'West Godavari']
[' Industry Name ', 'COASTAL AGRO INDUSTRIES LIMITED UNIT-I  AND II', ' District Name ', 'West Godavari']
[' Industry Name ', 'SAHITHI PAPER BOARD ENTERPRISES', ' District Name ', 'East Godavari']
[' Industry Name ', 'SRI SAI RAMA CARD BOARD MAKING', ' District Name ', 'Prakasam']
[' Industry Name ', 'Gayathri Raghavendra Enterprises', ' District Name ', 'West Godavari']
[' Industry Name ', 'Sai siva paper and boards', ' District Name ', 'Krishna']
[' Industry Name ', 'G R CARD BOARD INDUSTRIES', ' District Name ', 'Guntur']
[' Industry Name ', 'Sree rama mill board', ' District Name ', 'West Godavari']
[' Industry Name ', 'QUALITHY MILL BOARDS', ' District Name ', 'S.P.S.R. Nellore']
[' Industry Name ', 'CPF INDIA PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'V Feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'R K MINERALS', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'OPAL BIOTECH', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'vishnu welfare Association', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BLUEWAVE HEALTH CARE', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Cargill India private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '46']
[' Industry Name ', 'Mettle Bio sciences', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DHARANI FORESTRY AND ORCHARDS LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '11']
[' Industry Name ', 'GODREJ AGROVET LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '40']
[' Industry Name ', 'VIJAY FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srilakshmi Fish Feed', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'NAVKIRAN TECHNO FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '44']
[' Industry Name ', 'SN ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAVKIRAN TECHNO FEEDS EXPANSION', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'apple biotechnologies', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Jayanthi Aqua Feeds', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AMRG Aqua feed', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'virinchi aquatech', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'UNO FEEDS EXPANSION', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '22']
[' Industry Name ', 'RUDRA TECHNO FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '119']
[' Industry Name ', 'UNO FEEDS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '23']
[' Industry Name ', 'SHARAT INDUSTRIES LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'ALGEN LIFE SCIENCES PVT LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'haribabu grandi aqva and cattle feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DR HATCHERY', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'THE WATERBASE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '39']
[' Industry Name ', 'siddardha hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NUTRI FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KWALITY FEEDS LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '94']
[' Industry Name ', 'cargil india pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '40']
[' Industry Name ', 'maddila charitable trust', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRAVANI AGRI TECH', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'sri kameswari aqua packaged drinking water', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'PRAHLADHA CONSUMER COOPERATIVE CENTRAL STORE MILL', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SVD AQUA', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SUBRAMANYA CATTLE FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'seven hills chem products', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'I  and V BIO INDIA PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'Sandhya Aqua Exports Pvt Ltd', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '481']
[' Industry Name ', 'Venkateswara Flour Mill', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI RICE AND FLOOR MILL', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vikram zerox shop', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI SRINIVASA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'WELL VET LABS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SDC BLUEMAX NUTRIENTS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAGAR AQUA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'COASTAL FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'Jaya Chemi', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'RANI AQUA FEEDS PVTLTD', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '59']
[' Industry Name ', 'raghavendra agency', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RISHIK AGRO FEED INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NG FEEDS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '56']
[' Industry Name ', 'CODEX BIOSCIENCES INTERNATIONAL PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Royal Aqua Industries 1863C4 BERANGIKOTHAKOTA B Kothakota', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Continental aqua feeds', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'STERLINE BIO REMEDIES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '55']
[' Industry Name ', 'AVANTHI FEEDS LIMITED UNIT 2', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '118']
[' Industry Name ', 'AVANTHI FEEDS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '281']
[' Industry Name ', 'Seven Horses Feed Needs', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'STAR FISH FEED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'PURNIMA FEEDS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Nalamati Ramarao', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CH R VASANTHA', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUBHADA WATER PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Yanamadala Nataraju Fish Pond', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHANMUKHA AQUA CARE SOLUTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HAYAGREEVA BIO ORGANICS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SYON AQUA SOLUTIONS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI GANGA FOUNDATION', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'YSR Syachcha Neetu Pathakam', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri syam ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RDT Water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Manjunath water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NUDURUPADU PANCHAYAT WATER PLANT', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gamini ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Ice Factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Chandu ice cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'chenchu lakshmi praja samasta water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANJALI CHARITABLE TRUST', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VSR ICE FACTORY', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai Durga Ice Factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'RAIN DROP WATER PLANT', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SHANKARA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'FISH HUT', ' District Name ', 'Anantapur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Water Plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai sampadha hatchery', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI GAMINI CHAKRAVARTHI ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bhushana kumari fisharies', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri ram ice and cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'krishnateja ice cold storage', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Jayalakshmi ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA AQUA PRODUCTIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SATYA ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'spandana aqua purified mineral water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNAM RAJU ICE AND COLD STORAGE', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri atchutarama ice and cold storage plant', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVSV AQUA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'velugu hatcheries', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SP AQUA WATER PLANT', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vodalife', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ganesh Water Plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ARM ICE INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AQUACULTURE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MAHITHA HATCHERIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TNR SEA FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AKSHAYA PURIFIED DRINKING WATER', ' District Name ', 'Kadapa', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ayinala veerraju R O PLANT', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'R K S NATURE BIO TECH', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA MINERAL AQUA', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AMRUTHA WATER PLANT', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'SURYA AQUA', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SDM AQUA INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Om maritech Pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'INDRA PURIFIED DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara Swamy boat works', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMINARASIMHA CHARITABLE TRUST', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi charitable trust', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Rice Mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA GANGA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kasturi aqua industries', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri Venkateswara boat works', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRAVANI AQUA FORM', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GANGA COOL WATER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'iqea aqua', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'M N B R Aditya Hatchery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Ganga purifier water', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIPA AQUA MARINE PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'AMRUTH AQUA MINERALS', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'suryadevara suresh babu', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gogitri', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Israel welding shop', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ranga kumar engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANNAPURNA PACKAGE DRINKING WATER', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'slv water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KRISHNA SAI BIO PRODUCTS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'valluru ashok babu', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Harsha Aqua Mineral Water', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Durga Manikanta Water Plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS ECO THERMO POLYMERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'pavan kumar aqua Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Khuddus engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SHIRDI SAI HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri ranga  Kumar Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ms Sri Chetan water plant', ' District Name ', 'Kurnool', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bala Vikasa Sangika Seva samstha', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRIYANAKA ENTERPRISE HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SIDDHU HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'oil and rice floor mill', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'HARITHA SUDHHA JALAM', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'flour milling and oil crushing', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yerra kanchamma talli trust purified water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaya Durga Purified Water plant', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NATURE BIO TECH', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'life care aqua', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALPHA HATCHERIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'AQUA PRIME INTERNATIONAL INDIA LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE SAI SUJAL FOOD AND BEVERAGES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Abhinaya foods private limited ice factory', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ADHIYA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Jay jay marine', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREENIVASULU HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'GVG AQUA INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'IIFSA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'sai vamsi aqua', ' District Name ', 'Chittoor', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SHELL TECH', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'extraction of chitin', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'UNILODS BIOSCIENCES PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'extraction of chitin', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'SRI  SURYA BIOTECH', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'extraction of chitin', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '16']
[' Industry Name ', 'Devi fisheries limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '100']
[' Industry Name ', 'Sri kameswari asirithalli aqua', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Liberty Frozen Foods Private Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI ANANTH BIOSUPPLEMENTS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'DANICA AQUA EXPORTS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'Varma shrimp growing farms', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasista marine', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '111']
[' Industry Name ', 'SUNRISE AQUA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Arun Aqua Exports', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '28']
[' Industry Name ', 'KADER EXPORTS PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '673']
[' Industry Name ', 'Mulpuri Aqua Processors Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '25']
[' Industry Name ', 'Kaushalya Aqua Marine products exports Pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SAGAR GRANDI EXPORTS PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'ABAD OVERSEAS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '131']
[' Industry Name ', 'munnangi sea foods private limited', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'AVANTI FEEDS LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'Elwyn Enterprises', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish and Prawn processing with allied activities', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TRIPURA FISH NET INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FISH PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'sri rama ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FISH PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'REC AQUA Solutions', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FISH PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KRM Ice factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FISH PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Rajarajeswari ice factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish processing and packaging (excluding chilling of fish)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sree lakshmi narasimha ice factory', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish processing and packaging (excluding chilling of fish)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA SYAMALA ICE INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish processing and packaging (excluding chilling of fish)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'UTKAL ICE FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Fish processing and packaging (excluding chilling of fish)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Vikramasimha ice industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA SIMHA ICE INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SAI ICE FACTORY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRIKANTH INTERNATIONAL PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '45']
[' Industry Name ', 'Gayatri ice factory', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'S J Sea Foods', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'Ananda Enterprises Private limited', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '72']
[' Industry Name ', 'Kavya Sea Foods', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Five Star Marine Exports Private Limited', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SDL ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA FOODS', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bluepark Sea Foods Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'FROZEN FISH AND SHRIMPS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '70']
[' Industry Name ', 'Sri bosannababu Hatchery', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI JAYASURYACHANDRA HATCHERIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SATYAGIRI HATCHERY', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VASISTA MARINE', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri RamaKrishna Prawn and Shrimp Hatchery', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vvs hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jaykay hatcheries unit 2', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANJANEYA HATCHERIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'OM NAMO VENKATESHA', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri tirumula hatcheries', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Ramalakshmi  Aqua Hatchery', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'HSC SEAFOODS', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'prasanthi hatcheries and aqua exports', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'N S R HATCHERIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sadwika hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri ratnagiri hatcheries', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ORCA AQUA NURSERY', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'ORCA AQUA NURSERY', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GAYATHRI SALT WORKING HATCHERY', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri vasudeva hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vital hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Saranya bay fry Hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BMR Exports', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'hyma hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABU AQUARIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'hyma hatchery 2', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meenakshi hatcheries private limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '31']
[' Industry Name ', 'srinivasa aqua hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Seven Seas aqafarms and export ltd', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '22']
[' Industry Name ', 'srinivasa hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sapthagiri hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri purijaganath hatchery', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OCEAN PARK HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HACTHING OF SHRIMP', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SURYA SRI PAVAN HATCHERIES 1', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GAYATHRI HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'OPERA ZEN FOODS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Venkata Subrahmanyam Hatcharies', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Maha devi Hatchery', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'M R Hatchery', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SAI BHARGAVI HATCHERIES PVT LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ANIL AQUATECH', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SREE HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ramaa Hatcheries', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BKMN AQUA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SEVEN HILLS HATCHERIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sathya Fish Hatchery', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Durga Hatchery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'NIKHIL HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma Hatchery', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'COSTA LINE HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MAHITHA SHRIMP HATCHERIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'MAHITHA SHRIMP HATCHERIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA BHARATHI SHRIMP HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'V R HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MANNEMALA RAVICHANDRA REDDY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SR HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI DAKSHI SARAYU HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KRR HATCHERIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MADHAV AQUA FEEDS AND CHEMICALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RAINBOW HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SUN HATCHERY 2', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'KRR Hatcheries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SUMASREE HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri ramakrishna hatcheries', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'AMARAVATHI HATCHERYS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MS CITRON MARINE PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'HATCHERY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'OCEAN AQUA PHARMA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SANDHYA MARINES LIMITED UNIT-II', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '39']
[' Industry Name ', 'SR FIBRES', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Regency Boat Builders', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'viswanatham enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NAGESH BOAT BUILDERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'golden India Pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Babu saheb foundry', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYADURGA MANUFACTURERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KINGSTON MARINE INC', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', '24x7 Purified drinking water plant', ' District Name ', 'Kurnool', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAGAR GRANDHI EXPORTS PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NEEVA AERO SOLUTIONS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'MARINE PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Jagadeesh Marine Exports', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'PRAWN CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '267']
[' Industry Name ', 'CITRON MARINE PVT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'PRAWN CULTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'RKR SEA FOODS', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'AMARAVATHI AQUA', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '54']
[' Industry Name ', 'Devi aquatech private limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'UNIVERSAL COLD STORAGE PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '77']
[' Industry Name ', 'Neo industries', ' District Name ', 'Krishna', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SHARAT INDUSTRIES LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '77']
[' Industry Name ', 'Coastal Aqua Pvt limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '429']
[' Industry Name ', 'CPF INDIA PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '74']
[' Industry Name ', 'southern tropical food', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Prawn Processing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sandy Bay Seafoods India pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'Sri Durga Ice Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'Kodi Satish headless shed', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'sri omar alisha colastorae', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'VIJAYA POLUTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'RED CHILLISTEM CUTTING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srisuryagangothri ice plant', ' District Name ', 'East Godavari', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SEA FOOD TESTING LABORATORY', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI SEA FOODS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'RVR MARINE PRODUCTS LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'COASTAL CORPORATION LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'Satish marine exim private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'SAGAR GRANDHI EXPORTS PVT LTD', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine']
[' Industry Name ', 'SARAN SAI HATCHERIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'UNIBAY AQUA BREEDING PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nellore Hatcheries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Nellore Biotech', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vaisakhi Bio Resources Private Limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Lucky Hatcheries', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'CPF India Pvt Ltd Vijaya1', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'CPF INDIA PVT LTD VIJAYA 2', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'FORTUNE HATCHERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Shrimp improvement systems India limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'FEDORA SEA FOODS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '15']
[' Industry Name ', 'PADMAVATHI HATCHERY', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'SHRIMP SEED HATCHIRIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Nagasaki batteries and automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai Krishna induatries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Allabakshu Battery Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismillah Battery Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIDDAIAH Auto Electrical work', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ameya Batteries Pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '100']
[' Industry Name ', 'SRI VENKATA SAI BIKE MECHANIC WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lorven battery agencies', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'ASSEMBLING OF LEAD ACID STORAGE BATTERIES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kiyara tech pvt Ltd', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kk radiator works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Body Building Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sayad auto garrage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Bashir Auto Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baba Foundry and Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shahbuddin stickering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Panduranga Tractor Space', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SHAKEENA ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sap industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karimulla auto mobile mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul khadeer lorry painting works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS AUTO ELECTRICAL WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A to Z motors', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jareen industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRINIVASA WEILDING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bismillah clutch works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi steel', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Madavi Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BASHA FOUNDRY', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal Auto Electrical Disposal Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bharath engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRICOL LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '107']
[' Industry Name ', 'All star hydraulic power steering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Piolax India Private Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '129']
[' Industry Name ', 'Andhra auto agencies', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANHA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA ENGWORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'motor mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Auto mobile spare parts', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vellore Auto lathe and Weld works', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Auto mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa srihari welding works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Patan Yaseen khan automobile shop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal Automobile Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sk masthan welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lorry Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA AUTO WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Siva shankar welding works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sivanaga malleswari mineral water', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KARUNYA AUTO GYARAGE', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri padmaja oil traders', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S A Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata srinivasa body building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismillah auto electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Auto turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sakthi welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ASADULLAH ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BOOMIKA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hari Battery Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LORRY MECHANIC WORK', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sardar Tyre Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah servicing and mechanics', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MHN ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'TM SYED KHAN', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GEM ENGG CORPORATION', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lorry painting works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'car mechanic worksorks', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI Ramdas motors workshop', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'kalesha mechanical works', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Auto Electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla Turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'madina agro engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sathya Narayana auto works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'xerox shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Auto Mechanical Work', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lorry mechanic Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'FAYAZ ELECTRICAL ENGINEERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ramanjaneya welding and Turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'GUNJ Diesels', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'magbul lorry painting works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jai santhoshi Matha Mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI DIESEL SERVICES', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'jai santhoshi Matha Mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Tinkering Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rockman Industries Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '779']
[' Industry Name ', 'Modern Steels', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJU BIKE TYRE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Al Ahmed Auto engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya Krishna Industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JN Car mechanic', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANJEEVI AUTO WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUBRAHMANYAM AUTO TURNING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Laxmi auto consultancy', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Pipe Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna Electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'THIRUMALA GAS WELDING WORK', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA SAI DURGA AUTO ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Durga Blacksmith Works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI NAGENDRA ENGINEERING AND WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRINIVASA SERVICING', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ROOPA SRI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Aditya motor rewinding', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Goda srinivasa power tools serviceing', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA TARPALEIN', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shameer motors Repair and Services', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Madina Engineering Works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RJ Traders', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ushodaya Lorry Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JAYALAKSHMI AUTO INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjaneya Body Build works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MANJUNATH INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Suri Boring works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'krishna sai diesel services', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vincent engineering works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Expert Diesel service', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi body building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Anjaneyulu batteries repair works', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SaiKiran Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narasimhulu Tractor welders', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jameel welding works', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Auto Tinkering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Jaya Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MRS L S INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'durga engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veenas engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai kumari lathe works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka Durga gas welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Alstar Auto servicing', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavani Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI DURGA METALLIC WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Reddy surya raofoundry', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SK Owlla Engine Mechanic', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Purnasri kankadurga automobile and engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ANAND AUTO GARAGE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bhavani automobile and turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AlAli automotige Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sneha turbo spares', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JONNADULA EDUKONDALU WELDING WORKS and steel buffing', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAPTHAGIRI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'subramabyeswara Gas welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah auto Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa body building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Zawaharulla khan works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri bhavani motor works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahammad auto garage', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AUTO CLASS PAINTING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V Venkateswararao Mechanic Work Shop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G Punnaiah Lorry Body buildings', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Karim autimobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Herohonda Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lorry mechanical work', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga Industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KMR Paint Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sankar Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ganesh Mortors', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P Ramireddy Lorry and Tractor Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SUBHANI TRACTOR MECHANIC WORK', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bramaramba Traders', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lorry mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'siva engineering enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'rafi auto spare parts shop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Baji Automobile', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lorry painting', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Tyre Vulcanising works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bude Service Point', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'clutch brake work', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'B VENKAT RAMANA', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA BODY BUILDERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VASU CAR CARE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Annapurnamma welding  turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BRAKES INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '87']
[' Industry Name ', 'SRI DURGA BHAVANI AUTO WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jayalakshmi agro indusrtries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hegemon bike zone', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Gayatri bike point', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI Venkateswara welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI NEW VENKATESWARA MOTORS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Tirumala Auto Service', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'kodanda rama engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AZAD AUTO WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANAKA DURGA WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'snehitha agriculture kammari works and general', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sai Ram Grills', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RK industry', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NATIONAL ENGINEERING AND AUTOMOBILE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Durga Auto works', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MYZAS ENGINEERS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Babu Clutch Plate Works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA ISHWARYA AMBIKA ICE FACTORY', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkataramana reddy', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya express car wash', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mahaboob Subhani Tractor Compressor Mechanic', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srikanth engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Mahaboob subhan I auto garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'varasiddi vinayaka industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Madeena auto garrage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SGH Clutch Centre', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramana Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'kisan agro engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sree Maruti retrading service Pvt Ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'Sri Sri Baikali Polamma Gas Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HKBN Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'TITUS INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BSA Motor works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SHIRIDI SAI TECHNOCRAFTS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVASA AUTOMOBILES', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sudarsan Auto Industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Southeran bags', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'S R ENGINEEING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'TATA TOYO RADIATOR LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '54']
[' Industry Name ', 'Prasad baba automobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Tyre vulcanising works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Azmatulla lorry mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAM ENGINEERS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lorry body builders and works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HABIB ENGINEERING EORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SYA Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'NITTAN INDIA TECH PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '154']
[' Industry Name ', 'RAVISANKAR INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'shirdi sai Engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RAVI SANKAR ENGINEERING PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'MANJU AGENCIES', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SHAMEER ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI GANAPATHI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'PRECIFAST PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '49']
[' Industry Name ', 'KGN Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik irfan', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rahaman Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Md ismail', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K G N AUTO ELECTRICAL BATTERY WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jyothi tractor works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHUKUR AND SONS MULTI AUTO GARAGE', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'so mustan vali', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAM TRACTORS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vinay auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Babu and brothers', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'new andhra engineering work', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara automobile services', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venkateswara auto works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Salim Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI KRISHNA AUTO GARAGE', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Sattar', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Motors', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kjan clutch plate works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRISHNA DIESEL SERVICE', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismilla auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'diesel service company', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'star industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Siva Auto Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lashmi Auto Diesel works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'P Mohamood Khan And p Firoz Khan', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pathan mastan khan', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah painting works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakadurga radiator works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'babu auto traders', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI BALAJI ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik tanveer auto guarage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'standard Rubber products', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MD HABIBULLAH KHAN Diesel Mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Krishna auto garages', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIKANTH AUTOMOBILE TYRE RETREADING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Seven Hills auto mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KSR ENGINEERING AND INDUSTRIAL', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara auto Garrage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sivaram Auto consultant', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAI HANUMAN ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKAYA AUTO MOBILES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Berachah engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saisurya engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'pujitha body building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'lorry tinkering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MLB engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Adham shafi lorry mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Poojitha service center', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SL car repairs and suppliers', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Arki Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RR chicken', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLAH TINKERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sd Kareem motors', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah generator works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M F  TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi diesel services', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul sattar Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'fazal auto electricals', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SD Rashid mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik shabbir Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik silar and sons body builders', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BASHA AUTO ELECTRICAL WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sambasiva Lorry Boby buliders', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanaka mahalakshmi automobiles and hardware', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kaza automobile service point', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SPHOORTHY AGRI INPUTS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramakrishna  lorry Body building', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMKRG PISTONS AND RINGS LTD PLANT 3', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '500']
[' Industry Name ', 'National Auto Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SADA SIVA OIL TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maqbool Khan Auto Services', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai tejaswi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DIVYASHI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA AUTO ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA BODY BUILDERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Prasad Auto Service', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ganesh enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE KANAKADURGA MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAVYA BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saikam veera raghavaiah auto mobile works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Auto works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Bismillah kalam body building works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CASE CONSTRUCTIONS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SLAMA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Auto works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Auto Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nagaraju two Wheeler mechanic works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri rama Krishna engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kanakadurga motor works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Tirumala Srinivasa mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA SAI INDUSTIES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma auto Garage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah hand drilling works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah old two wheeler and three wheeler spares', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sankar Tinkering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NEW YAKINU BODY BUILDERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Abdul Ajegar Ali radiator works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Syed Bademiya lorry body building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SCUBE CAR CARE', ' District Name ', 'Vizianagaram', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE SAI ENGINEERING', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rama coach builders', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Samba Siva rao welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'md shamshuddin auto mechanic  works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narayana auto works and water servicing center', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah mechanical works and water wash', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mohan Paints', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Maruthi Durga Malleswari Auto works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinu auto services', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vasu auto works', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'T Venkata subbarao auto mechanic', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA MARUTHI DIESEL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sharma automobile garage', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Mukesh diesels', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'subramanyam cycle mechanic', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Annapurna Auto Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kavya Sri photo frame works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'STAR AUTOMOBILE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'TEJASWINI AUTOMOBILES', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Subramanyeswara Auto Elecrical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismilla Auto Electrical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJETHA AUTO SERVICING CENTER', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANAKADURGA LIFT MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sana Stickring Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGN lorry body labour works', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'International tyre service', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Saibaba Automobile works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Satya Industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Lakshmi Lorry show articles', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI KRISHNA DIESEL HOUSE', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MEENAKSHI WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'H B M Auto Garage', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai nadha tinkering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ratnam pipe works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GM AUTOMOBILES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vigneswara Body Building Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'RAJA BLACKSMITH WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dhanvi Honda showroom', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri saibaba auto garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAYAN AUTOMOBILE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shadi air brakes', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Madalammathalli Hand Drilling Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai Hanuman Body Building works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTA FOAM WASH', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUNI AND MOUNI AUTOMOBILE WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajarajeshwari Automobile works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Retreading', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BajiBaba Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Anwar Electrical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Irfan Gas Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Prabhu Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'APR industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BISMILLA ENGINEERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K K Body Building Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AL SIDDIQIYA AUTO ENGGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Prasad Diesel house', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jesus body building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi tinkering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHULAKSHMI AGRO INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Prabhudaya Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Ganesh Plastics', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RAJYALAKSHMI LORRY BODY BUILDING', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'AJHGHARALI TINKERING WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Munaf Khan Two Wheeler mechanic shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Devi Manasaharini Enginneeing Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Durga Bhavani diesel service', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA LORRY MECHANIC WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bhasha bed works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dastagir auto garage', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'khaleel automobiles', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Basha welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jani Scooter mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi Auto Mobile Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya durga auto body builders', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Auto Servicing', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA DURGA MOTORS PVT LTD', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinu repair works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Siva sai automobiles', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mounica Blacksmith works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SKS GARAGE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rafi autoelectricals and battery works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kanaka durga services', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa General Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri vinayaka turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga Auto Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga pavan engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Saidurga Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vigneswara Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Basher Automobile Oil', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagendra Belt Filing works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Navayuga Tractor Mechanic', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Vishnava Truck Wheels', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'star head recondition works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Automotive INDIA Pvt Ltd', ' District Name ', 'Vizianagaram', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri rajyalakshmi automobile works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jaffar Tinkering and Body Building', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'srinivasulu mechanical work', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'malleswari battery and auto electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri saradhi mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Gouse Radiator works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADEENA DIESEL SERVICE', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LOTUS ENGINEERING', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAI GURUDEV BODY BUILDING', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AUTO MECHANIC', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'amulya black smit', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'tractor mechanic  survesing centre', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Jani body building works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TYRE VALCONISING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'J Sambasivarao Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI MARUTHI AUTOMOBILE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai ganesh motor works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lotus Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Sai Marathi reboring working', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Madina  Auto Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Abhilas General engineering', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'grace auto body builders', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAVI AUTOMOBILE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shaik Mohammed bilal', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'New Famous Radiator Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajendra Motor works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'subbaramannyam auto garage', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA LORRY MECHANIC WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA DIESEL SERVICE', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SADIK BIKE ZONE', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Prakash Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Automobile Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Prasanna mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Sai Auto Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Kankadurga Mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Durga Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Yuva Bhargav Hydrolic works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanaka Durga Air filter cleaning Syste', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ms Sai Ram Body Building Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ADMIRAL INDUSTRIAL CORPORATION', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Aleem bike mechanic', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kapil agencies', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LATHA FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARFA CORPENTORS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sheet metal works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Car Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RVS Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA AUTO ELECTRICAL WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kanakamaheswari automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vulcanizing works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGA BHAVANI MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'METRO MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Water Servicing Center', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lanka Durga Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri kanaka durga diesel house', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MS KHADEER AUTO ELECTRICAL WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Baji Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkata sai engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'jabilli creative media', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vijaya Lakshmi Motor Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karimulla Lory Mechanical Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI GANESH AUTOMOBILE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Buela turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Karthikeya Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi ganapathi foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AL MUHAMMADIYA AUTOMOTIVE ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Malik Auto Electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Savitru industrial corporation', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hydro Safe Hoses', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI SRINIVASA BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PRABHU AUTO TURNING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Raviraj AGRO services', ' District Name ', 'Vizianagaram', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI VENKATA SAI MANIKANTA DIESEL SERVICES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGAS RUBBER WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BASHA AUTO REBORING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYA KANAKA DURGA TYRE WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mithin Auto Mobiles', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tyre Rebutton Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Johnny Auto Turning Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATA KANAKA DURGA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'rajarajeswari welding shop', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIRI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kusalava international ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'syed  moulali', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'subramanyam welders', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai Painting Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lokesh Engineering Automobiles', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Navuri Engineering Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Bosu Mechanical Work Shop', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Automobile Workshop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sheyamalamba bike mechanical works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagarjuna automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Dhanu Vulcanizing shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'velivala tire works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KHADAR VALI RETREADING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SMG Tractors', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Siva Spray Painting Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Harsha Auto Enterprises private limited', ' District Name ', 'Kurnool', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Auto Spares and Servicing Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AL HADID WELDING WORKS', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A N engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA AUTOMOBILES', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi Ganapathi durga bhavani hanuman car care', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ALI WATER SERVICING CENTER', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lorry mechanic', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Motor Speedo Meter Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ADITHYA AUTOMOBILES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Shiva Sai Engineering works', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sadik Welding works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veeranjaneya body builders', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'United Art grills', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Makali Garrage', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Ganapati Mechanic Work Shop Foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sarmasvalli panchar shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Egineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ISHAQ CAR AC AUTO ELECTRICAL WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ganesh auto garage works', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri chaithanya sai two wheeler garage', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI CAR CARE', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PRUDHVI MINING COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Durga automotives', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRINIVASA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srujana transport system', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOPI KRISHNA MOTORS', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Body building work and puncher works', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA GENERAL STORES', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Shankara Durga Sai Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'motorcycle repairs', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Chand motor works', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VANI DURGA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'satish tinkering and gas welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Modha Sai Water service mechanical work shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji auto Guarage', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai Ganesh industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ALF ENGINEERING PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '141']
[' Industry Name ', 'Masoodvali Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARUNA DIESEL', ' District Name ', 'Vizianagaram', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HKGN Auto electric works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MUSTAFA AUTO ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GEETA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'PRASAD MECHANIC WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAMADEVI SUZUKI', ' District Name ', 'Vizianagaram', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGA WELDING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri bose poundary works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Ranga Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHELTON MOTORS PRIVATE LIMITED', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Shaik Babjan Bikes', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nawaz engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bike repair shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'CRAZY CARS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Jami hydraulics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'MGM springs private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Sri padmavathi industries', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bismillah Auto Electrical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srikara Motors', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Venkateswara Motors', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RK MOTO CORP', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI RAGHAVENDRA AUTO MOBILES', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Arshad motor works', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SKLN engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI LAKSHMI AUTO GAURAGE', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TOHOKU STEEL INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '26']
[' Industry Name ', 'Motor Mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R AGRICULTURAL ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Hkgn Auto spares', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAIBABA FUEL PUMP SERVICE', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SREE BALAJI ENTERPRISES', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mustafa Auto spares and servicing', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Teja Motor cycle mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PROGRESSIVE STEELS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'jBABA FAKRUDDIN LATHE WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'H K G N car garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nageswara lorry mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LV auto mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ali Bike point', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGN Mechanic shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAMEER Automobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'AUTOMOBILE COMPONENTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sabiha bed re condition works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLAH BODY BUILDERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ESPEE ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI DURGA DIESELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'NAYAB RASOOL and CO', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K M SUBRAMANYAM WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAN AGRO INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Thirumala venktateswara automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz tyre works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mahindra Genuine spare parts', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gouse auto springer', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DVR ENGINEERING', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'rafiautoelectrictionshop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'neelimaautostores', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shanmukeswari Hradewares Stores', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SONI TRACTOR SPARES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Anshul Mazeed Old motor parts', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ajas foundry workshop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'chalapathi bike mechanics', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji Auto mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jabir agro industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri kopoteswara auto mobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI SREEKAR MOTORS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'star mechanical works', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Golden motors', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'prasad industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Viswa karma auto works', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa automobiles', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Auto works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'siva auto garrage', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AG Industries Private Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '187']
[' Industry Name ', 'RAO AND RAO TYRES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI AGROS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BASHA MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SivaShakthi work shop', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI MOTORS', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri venkateswara auto service', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Allah Bakash Tractor Repairs', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BABU AUTO GARAGE', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MASTHAN VALI AUTO ELECTRICAL WORK SHOP', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'syed abdul salam gas welding', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Uma turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KARBALA AUTO GARAGE', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalakshmi Tractor Spare Parts', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SLN AUTOMOBILES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'City auto spare parts', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'malleswari motor bike mechanical shop', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A1 Hydro Hoses', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Divya Sri clutch and brake works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veeranjaneya old iron springs', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'aruna engineering company', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga sai cycle and mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHADI AUTOMOBILES AND ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAJU TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'i 1 motors', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai prasad auto electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi ganapathi disposal', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'CHANDANA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMMAJI ELECTRICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vijaya durga auto sales international', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Abdul rawoof services', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Taj auto engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'subhani engineering work shop', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Siva Shankar Automobiles Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Shiridi sai Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'gouss pipe works and air boosters', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KVR GARAGE', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kummaram works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RAJU SCOOTER WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA SPARES', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Nagaraju carpentry works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ya ghouse motors', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JK BROS AUTO WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'abbas', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Vaishnavi Automobiles And Oils', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'karuna mechanic shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MECHANICAL WORK SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YAMAHA BIKE CORNER', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Poornachandrarao Workshop', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sai mahadurga engineering works', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SWATHANTHRA AUTOMOBILE INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KUSALAVA INTERNATIONAL LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '70']
[' Industry Name ', 'Varun motors Pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '34']
[' Industry Name ', 'KUSALAVA INTERNATIONAL LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '413']
[' Industry Name ', 'Bollavarapu veera swamy arc welding', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BALAJI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa bike mechanic works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI ARAVINDA AGENCIES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Bhavani Engineer Works', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri naga malleswara mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Shaik mahaboob Subhani engineering work', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VIJAYAWADA ALLOY CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'A P SPRINGS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'VARSHINI BAJAJ', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Abdul mishra auto electrical works', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YA GHOUSE TRACTOR WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mahaboob Subhani Black Smithy works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siri motors authorised dealers', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Rithvikaa motors', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rk car decors', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Nisar Auto Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'M and N motors Pvt ltd', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'vision two wheelers', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Balaji mechnical work shop', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DHANALAKSHMI INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Raghavendra Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIGNESWARA  AUTOMOBILE S', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna Engg works', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Venkateswra Swamy Lorry Auto Gaurage', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Ramdas Motor Transport Ltd Commercial', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'FRIENDS AUTOMOBILES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SS AUTO TRADES', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK ENTERPRIZES', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'irfan auto mobiles', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HUMA AITOMOBILES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AL SAFA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Aniha enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISHNU ENGINEERING', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Murugan fabrications studs and chaplets', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KIA MOTORS INDIA PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '999']
[' Industry Name ', 'MOULALI ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVI ENGINEERING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIEC INDIA PRIVATE LTD', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'hanuman engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Baji welding works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA AUTO BODY BUILDERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Hero Moto Corp Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '263']
[' Industry Name ', 'S Babu enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'S R ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Auto Mechanic Shop', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA BODY BUILDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri raghavendra body building works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRY MILLER WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Babu engineering works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA COACH BUILDERS PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'bhulokamma  servicing center', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri sai ganapathi auto tarning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Babu zubani mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Harsha Liners', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '104']
[' Industry Name ', 'AUTOMOBILE ENGINEERING  WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ALSTOM TRANSPORT INDIA LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '407']
[' Industry Name ', 'SRI PADMAVATHI AUTOMOTIVES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'NHK SPRING INDIA LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '40']
[' Industry Name ', 'ISUZU MOTORS INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '341']
[' Industry Name ', 'MITHRA COACHES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobiles Manufacturing (Integrated facilities)', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '26']
[' Industry Name ', 'ROSHAN ENGINEERING WORKS AND TRADING', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AUTOMOTIVE MANUFACTURERS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'sadhki auto reboring works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NS Instruments India Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '482']
[' Industry Name ', 'Vali Black Smithy works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'baba Tazuddin gas And arc welding works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri manikanta workshop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'G S Industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rama Turning Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bhavya Sri Mechanical Work', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SYAMALA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Riyaz auto electrical works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MARUTI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HMK AGROS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Kona Ram babu', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'paints corner', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'abdul khadar jeelani motor works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BABA DIGITAL METER WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AVI BIKE REPAIRS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MADHEENA BUS BODY BUILDING WORK', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tirumala automotives', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KIKUWA INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '123']
[' Industry Name ', 'AISAN AUTO PARTS INDIA PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automotive Parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '351']
[' Industry Name ', 'JAYA SAI ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Krishna engineering industry', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KRUPA MAYA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Royal Lift Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'P V MECHANICAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai ram motor works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA ENGINEERING WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S L N ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'bindu Sree xerox shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'CAR TREAT', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'SAHARA WORK SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'Ramu Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'Rajarajeswari Automobile engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'DURGA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'jaleel welding  turning works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'RAMA BLACKSMITH WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'SREE MARUTHI INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'Venkateswara Welding Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'Sri Venkata Kanaka Durga Lathe Work and Weldings', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'VIJAY LAKSHMI LATHE WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS']
[' Industry Name ', 'INDIAN HYDRAULICS HOSES AND SPARES', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Hydraulic Hose Crimping Unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Kunchamamba Hydraulics Lift Spares and Services', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Hydraulic Hose Crimping Unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'TRINITY SYSTEMS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'HYDRAULIC HOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Rayyan Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'HYDRAULIC HOSES', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Shameer seat line Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacture of Car Seats and Manual Transmissions', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sita Rama Agro Industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SBK WELDING SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BASHA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mohan Bodybuilding works', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SHAIK MUNEER TINKARING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'JOSHITHA TRAILER WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vishnu Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri kesav sai arc welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jayalakshmi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'basha auto garage', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS Balaji Agro industries', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI DURGA WELDING', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'navya agro industries', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi srinivasa arc welding', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LB AGRO PRODUCTS', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Sri Srinivasa arc welding works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri balakrishna foundry and mechanical works', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VIJAYA DURGA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS VIJAYA GANAPATI TRAILER WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri panduranga industries', ' District Name ', 'Prakasam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri Gayatri engineering works', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RYTHU MITHRA ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'UNIVERSAL TECHNICAL SERVICES', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacturing of Excavator CNC Machining and Assembling parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Srinivasa Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacturing of Excavator CNC Machining and Assembling parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara weldings padiri thangavelu aachari', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacturing of Excavator CNC Machining and Assembling parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Durga Malleswara Castings', ' District Name ', 'East Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacturing of Excavator CNC Machining and Assembling parts', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'INDIA METAL ONE STEEL PROCESSING PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacturing of Excavator CNC Machining and Assembling parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '239']
[' Industry Name ', 'Bismillah Radiator Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Manufacturing of Radiators', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 's and s industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Plastic Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'v2k Global', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Plastic Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Chan Turbo and Power steering', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Power Train and Drive line components manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATESWARA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Power Train and Drive line components manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PILKINGTON AUTOMOTIVE INDIA PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Sub Assembly of Automotive Glass', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '247']
[' Industry Name ', 'akbar tyre works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Nurjahon Tyres', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijay Tyres', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Parvathi Tyre Mould works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Tyre Rebutton Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Abdullah Retrading Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RAHAMATH TYRES RETRADING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PAVAN TYRES', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI DURGA TYRE REATRITING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KKLS IMRAN RETRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'K V R TYRE', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'TYRE RETRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi auto garage', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Shaheen Tyre Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'National  tyres', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'bismilla tyre works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Boya anjinamma puncher shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hussain Valli punchier shop', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Md Shafik Qureshi Tyre Works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Gousya tyre works', ' District Name ', 'West Godavari', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Auto Tyre Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shaik Baba Punture Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siriyala Babavali Punture Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rawoof Tyre Works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Air filling machine', ' District Name ', 'Kadapa', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ishrain tyre works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Noor Mahammad Puncture Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Seksha Puncture Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Shek Babavali Puncture Shop', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'DEVENDRA CYCLE REPAIR SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Md Sharif tyre works', ' District Name ', 'Krishna', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'shree kubera retraders', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Govindappa blow machine', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri venkateshwara tires', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla Garage', ' District Name ', 'Anantapur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Tyre works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raja rajsswari welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Munna steels', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Saibaba Welding works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Beeruva manufacturing  repair and painting works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Masha Allah grill works', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Subanuula Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'MURUGAN WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI DURGA WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI NAGA VENKATA SIRISHA WELDING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'k pichhaia black smith', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Likitha welding workshop', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'S S V WELDING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'kanakamahalaxmi welding works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Hanuman welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Raja Rajeswari Enginnering Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri Raja Bangaramma thalli Welding Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri Venkata Durga Welding Works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Bismillah Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri Manikanta Welding Works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'siraj engineering and welding works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'kanaka mahalakshmi Fabrication', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'MADEENA Engineering welding', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Vijaya lakshmi arch welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Srinivasa Biruva Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'sailakshmi alamariahs shop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI RAMA WELDING AND FABRICATION WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SUBHANI FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Madhambika welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SVSL FABRICATION AND WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI MAHALAKSHMAMMA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'RAMAYYATHANDRI SIMHADRIAPPANA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'satyanarayana welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri vijayalaxmi welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI PAIDITALLI WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'ALMADENA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'HKGN ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'JAI KISSAN ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri Mahalakshmi Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'AR ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'POOJA WELDING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Om Shakthi Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI SAI DURGA WELDING', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'S K Engineering works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'MASHA ALLAH ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'AL MAJID', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'KGN SADIQ ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'A ASIF', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'sri siva sai welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'kasi visweswara welding works', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Venkateswara welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Monika', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SRI RAMA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'gurumurty welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'M R AGRO ENGINEERING WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'sree lakshmi narasimha finishings', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Naveen Black smith shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'ABHIRAM ALUMINIUM WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'krishnamurthy welding and fabrications', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'UMA MAHESHWARA WELDING SHOP', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri satya gowri durga welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Lakshmi ganapathi welding and blacksmith', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Kesanakurthi Durga Shankar Welding Shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SLL WORKSHOP', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Lakshmi ganapati beeruva workshop', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SUDHA INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'sri rama welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'saiganesh welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Galib steel industries', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Nidadavolu Kanakachari Workshop', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SCSR Electronics and Furniture', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Tejeswini Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'SKML Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'mommin furniture works', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Sri Venkateswara welding shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'PRIYALATHA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'adhinarayana grill works and auto service', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Syam Sai arc welding fabrication and general', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries']
[' Industry Name ', 'Vasavi Rivits company', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium and copper extraction from scrap using oil fired furnace', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium and copper extraction from scrap using oil fired furnace', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI SAI LAKSHMI DIE CASTING LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium and copper extraction from scrap using oil fired furnace', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Lakshmi Ganapathi Agencies', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium and copper extraction from scrap using oil fired furnace', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'pooja scrap industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'ALUMINIUM EXTRACTION FROM SCRAP BY USING BIO GAS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA ALUMINIUM WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'ALUMINIUM EXTRACTION FROM SCRAP BY USING BIO GAS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'sri abhayanjaneya aluminum rolling industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium smelter', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Yesses Anodizing Industries Private Limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium smelter', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'MUTCHI ANJANEYA PRASAD ALUMINIUM WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SS METAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYA DURGA METAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Abdul Hadi tinkering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'South India Aluminium Industry', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'venkata Siva rama Krishna metal works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Lakshmi Metal Works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Akhil Shree Ram metals and Generals', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA METALS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIZAG PVC DOORS AND ALUMINIUM WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'awwwwwwNayaz Traders', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Ganesh aluminium rolling mill', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Surya Metal Rolling Mills', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI SAI RAM ROLLING MILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Royal Kitchen Ware', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Gayatri Metal Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'USHA METAL WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI PADMAVATHY INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Bhanodaya metal works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI MANIKANTA TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI NARAYANA SWAMY ALLUMINIUM ROLLING MILL', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sree Lakshmi Narasimha Aluminium Rolling Mills', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GANESH METAL INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SIMHARDI ALUMINIUM INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI BALA VENKATA DURGA METAL INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVARAMAKRISHNAROLLINGMILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAGHAVENDRA ROLLINGMILLS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'BALAJI METAL WORKS', ' District Name ', 'Kurnool', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Aluminium utensils from aluminium circles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'M M STEELS', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tarak Steel Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ak welding works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dr Amin controllers Pvt LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Balaji Industried', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Harshitha Steel', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'GR FABRICATIONS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RADICE ISPAT INDIA VIZAG', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '59']
[' Industry Name ', 'Sri koteswararao auto engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKETESWARA GENERAL ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Industries Cutting and brnding works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SALAMAT WELDING WORKS SHOP', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PRABU DESIGN WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'tirumala traders', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V R PRASAD WELDING SHOP', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BISMILLA DIE WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DATTA SAI FABRICATIONS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ramu welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DVN ENTERPRISES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BABA vibrator millers', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sampatti international', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Circars Lakshmi Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'transworld services ap private limited', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M S VINAYAKA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'DURGA VENKATA WELDING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri sai Satish Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 's n hydraulic services', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AS STEEL TRADERS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'BLACKGOLD PROFILES PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'Sanyasheswara Swami Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BEEKAY SPECIAL STEELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'bars rods rounds made of iron & steel', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '103']
[' Industry Name ', 'Sri Kanakadurga metal industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Manikanta Brass  and Bell metal unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'varma construction', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi Brass and Bell metal', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gayatri Brass and Bell metal', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KANCHI KAMKSHI BRASS WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Suresh gold work', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Akshay jewllers', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Copper Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI ETTADI INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI SAI ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ADDALA VENKATESWARLU', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JUPITAR ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'srinivasa gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAKMET ENGINEERING', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Rolling Mills', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prakash gold', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'satish gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Neelamani Brass and Bell metal', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Simhadrappanna Brass and Bell metal', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jai Sri Ram Steel Repair Company', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri ratna giri brass industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Balaji Copper Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JYOTHI BRASS METAL WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Brass & Bell metal utensils manufacturing from circle', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Pavan welding work', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'BRIGHT STEEL BAR', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'raghu engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'BRIGHT STEEL BAR', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Indo MIM Pvt Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '429']
[' Industry Name ', 'Varalakshmi jewellary and Silver works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MACHA VEERACHARI AND SON WORK SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RS industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Dhanalakshmi pattern works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri venkateswara turning and mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Garlapati Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENKATESWA BLACKSMITHY WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SRI SRI ANJANEYA CEMENT WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S V ALLOY CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'BHARANI JEWELS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vemaiah pottery industry', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VASAVI KANYAKA PARAMESWARI METALS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LOHITHA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ANISH JEWELLERY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'paramount industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'BHAVYA JEWELLERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sri surya sai iron foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'APARNA GOLD COVERINGJEWELLERY', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'QUALITY CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Kanaka durga Castings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SMB ashes industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '31']
[' Industry Name ', 'SVS ALLOYS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'APEX CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'INDIAN METAL WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'INDIAN COMMERCE AND INDUSTRIES CO PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SIBAR AUTO PARTS LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Casting', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'PENNA CEMENT INDUSTRIES LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cement Grinding Unit.', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '206']
[' Industry Name ', 'PENNA CEMENT INDUSTRIES LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cement Grinding Unit.', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '192']
[' Industry Name ', 'SOFIA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cement Grinding Unit.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Gousiya Engineering Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cement Grinding Unit.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Metal India Products pvt', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'COATED STEEL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'COLORSHINE COATED PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'COATED STEEL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'Santhosh engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cold Rolled sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Padmaja Traders', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cold Rolled sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SHAKTHI PREFAB TECHNOLOGIES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Cold Rolled sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'VINAYAKA COPPER works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Copper smelter', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kuruhuru Appalanarasamma', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Copper smelter', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HAZARAT ALI INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Copper smelter', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'CHENCHULAKSHMI COPPER WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Copper smelter', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI METALS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Extraction of Lead and manufacturing of Batterie', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'DECAN POWER ON', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Extraction of Lead and manufacturing of Batterie', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'AK ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Extraction of Lead from Scrap Batteries', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RML METALS AND ALLOYS PRIVATE LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Extraction of Lead from Scrap Batteries', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '18']
[' Industry Name ', 'DSC MANUFACTURING PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Extraction of Lead from Scrap Batteries', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'AMARAVATI METALS AND ALLOYS', ' District Name ', 'Kurnool', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Extraction of Lead from Scrap Batteries', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'paparao elactrical works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri gayathri engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ratnam Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TUF INDIA LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'MAITHAN ALLOYS LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '109']
[' Industry Name ', 'SUNDARAM ALLOYS LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '233']
[' Industry Name ', 'Abhijeet Ferrotech Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '213']
[' Industry Name ', 'M B SMELTERS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferro Alloy', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'sri balaji plastics', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sree Balaji Copper Works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sarda metals and alloys', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '612']
[' Industry Name ', 'Aduru Venkateswara Ratnamam Gold works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri antique jewelry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHASKAR BOARD FACTORY', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijetha gold covering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DHANAKRISHNA POOJA ARTICLES', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Ferrous and Non Ferrous metal extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Anil Nickel Plating works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Forging of ferrous & non-ferrous metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRABHAKARACHARI AGRICULTURAL IMPLEMENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Forging of ferrous & non-ferrous metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI BALAJI ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Forging of ferrous & non-ferrous metal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Siddiq industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Forging of ferrous & non-ferrous metal', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'khaja mechanic work', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA CASTING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri tirumala Venkateswara timber depo and shamil', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Srinivasa engineering works', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Aishwarya Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'new india auto mobile engineering works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MFR Engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENKATA RAMA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MD haneef body builders', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Gajalakshmi Mechanical Works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NARASIMHARAO WELDING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI PANDURANGA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NATIONAL ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'TIRUMALA ENGINEERING WORKS WAS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'venkata kanuka durga foundry', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Industry or process involving foundry operations', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Maruthi engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAVS STEEL PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'mahalakshmi frabrications', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AKSHAYA ARC WELDING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'STAR ROLLING SHUTTERS', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIJAYA DURGA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SIVAJI WELD MESH INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'ALLA MOHAMMAD LORRY BODY BU', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'surya enggineerings', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VENKATASAI ISPAT INDUSTRIES PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'SLV STEELS AND ALLOYS PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'Amman try sponge power private limited', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '61']
[' Industry Name ', 'SAI BALAJI SPONGE IRON PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'SRI SAKEENA ROOFING SOLUTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Neerajaksha Iron and Steel Pvt Ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'SRI NEELAVENI STEEL FURNITURE AND IRON INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Iron and Steel (involving processing from ore / integrated steel plants and or Sponge Iron Units).', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'DILIP WELDING WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi Chenna Kesava Traders', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Mangal Industries Limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '107']
[' Industry Name ', 'SUNEEL GENERAL ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Hari Babu Tractor Spares', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Good will engineerings', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noor welding works', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI PANDURANGA AGROS', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DAMU WELDING WORKES', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amma hydraulics', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Harini Roofing Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bilal Welding Works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Abdul Aziz steels', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'kishore industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri lakshmi arc welding works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bramaramba engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Noor Mohammed Engineering work shop', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIJAYA ENGINEERING WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A ONE STEELS INDIA PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '204']
[' Industry Name ', 'Raqxa Innovations', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA ENGINEERING WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Noushin Fierdos  welding works', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Indhusthan hardwares', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ASHOK INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'LAKSHMI WELDING', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ravikula Engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'royal industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganga Design Works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKA DURGA IRON AND STEEL WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Allah Work Shop', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SAI LAKSHMI WIRES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Leela Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Radhakrishna iron works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi narayana welding', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Shaik Basha Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Siva Fabricators', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESH FURNITURE WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srindustries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '23']
[' Industry Name ', 'Jayalakshmi Small Scale industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREE AMBIKA FABRICATION WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SINGANA BROTHERS Engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Radha Krishna Engineering works', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI JAGANNADHA Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Eswar Welding Works', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'gangamamba welding works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ZENITH HARDWARE INDUSTRIES PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI SEETHA RAMANJENEYA STEEL AND IRON WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJI FABRICATIONS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ramakrishna rice mill', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CTR591000009', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SURYA PNEUMATIC TECHNOLOGIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BETTER CASTINGS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sesha satya engineering industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'happy industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SRI PENTAMAMBA WELDING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hema Lavanta welding shop', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUPER STEEL PIPES AND TUBES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'pavanaputra industry', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Deviengineering', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DEEPSHIKA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI SRI LAKSHMI NARASIMHA SWAMY INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PAINTS manufacturing company', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Rajasekhar welding works', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AMARAVATHI INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Nirmala Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KEERTHIPRIYA WELDING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PATRA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ASHTA GANESH SAI WIRE PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravi Teja arc welding work', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rathna iron and hard ware stores', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KAMAKSHI STEELS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Karuna nidhi', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Vinayakaa technofab', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri surya teja engineering works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Bhanu Special Castings Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI SAI LAKSHMI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'GUBBALA VENKATA RAMANA', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VASU mechanical works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI DURGA UPVC WINDOWS AND DOORS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI DHARMASASTHA ELECTRICAL AND MECHANICAL SERVICE', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIGNESWARA STEEL INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Sri Durgabhavani Welding works', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SEETHARAMA IRON SYNDICATE', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kanya iron and steel private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '13']
[' Industry Name ', 'Shiva Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI PADMA DEVI ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama Iron Foundry', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'manufacturing', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'Sree Vasavi Engineering Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Mgr welding works', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Furniture works', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVASAI STEEL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Ramesh Welding Shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vasavi industries', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NATIONAL SHUTTERS', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'M M BARELS INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Wire Products', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EAZY GRILLERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Om nail industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'IRON AND STEEL PRODUCTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SOMESH MINERALS AND CHEMICALS', ' District Name ', 'Kurnool', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacture of Burnt Lime and Quick Lime Powder', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Sai Aluminium Trading', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturing of Aluminium Profiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Raja arc welding works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturing of Aluminium Profiles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'BALL BEVERAGES PACKAGING INDIA PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturing of Beverage cans', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '113']
[' Industry Name ', 'A S D ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturing of Beverage cans', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri sitaramanajaneya industrial works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'manufacturing of colour coated/ pre-painted roofing sheets and accessiories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DURGA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'manufacturing of colour coated/ pre-painted roofing sheets and accessiories', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkata Durga Welding Works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturjing Of GI Channels from GU Sheets', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'PRIYATHAMA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturjing Of GI Channels from GU Sheets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S K M ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturjing Of GI Channels from GU Sheets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturjing Of GI Channels from GU Sheets', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JK Engineering Works', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Manufacturjing Of GI Channels from GU Sheets', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Svd automobile works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'varma constructions', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'sri Durga engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Smiley industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'quality roofing solutions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'hussain welding and turning', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kalpana traders', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL SCRAP GRADING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'PULLA RAO  CO', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL SCRAP GRADING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'koteswari Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'METAL SCRAP GRADING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara  Roofing Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'MFG GALVANIC ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MARK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'MFG GALVANIC ROOFING SHEETS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'g Lakshmi narasappa granites', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'QUARTZ MINING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sujatha Stone crushers', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'road metal mining', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'neha stone crushers', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'road metal mining', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Durga Stone Crusher', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'road metal mining', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'suresh stone crusher', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'road metal mining', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'Surya chandra industry', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jai Hanuman metal works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BALAJI STEEL INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vijetha industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri satya Sai metal industries', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'UMA SHANKAR METAL WARE', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JYOTHY INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'NOOKAMBIKA VENKATADURGA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PR CANTEEN EQUIPMENTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SAI DURGA IRON WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KALYAN INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Stainless Steel Articles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'SRI VINAYAKA STEELS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel and steel products using various furnaces', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri durga sitaramanjaneya industrial works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel and steel products using various furnaces', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya mavulliswari coach builder works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel and steel products using various furnaces', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chaitanyaa Finetech', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel and steel products using various furnaces', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BABA STEEL', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel and steel products using various furnaces', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DHANASRI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel furniture without spray painting', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Viswanadh Spin Pipes', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Pipe Tubes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lepakshi tubes private limited', ' District Name ', 'Anantapur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Pipe Tubes', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'S V STEEL TUBES AND PIPES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Pipe Tubes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MADHUMATHI  INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Pipe Tubes', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ESWARA ENGINEERING WORKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bharat engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGN Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Kavitha Metal Works', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'BALAJI INDUSTRIAL GASES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'E R S ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VIJAYA DURGA ENGINEERING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'mohan industries', ' District Name ', 'East Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Steel Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'khadeer entreprises', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'STEEL STRAPING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI MAJJI GOWRI ENGINEERING WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Straightening of Wire Rod Coils', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI TIRUMALA INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Straightening of Wire Rod Coils', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'CB ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI NARAYANA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'umakiran wire mesh industries', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'WELDON WIRE DRAWING WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshmi ganapathi steel wire netting works', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HMS ENGINEERING WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi kodandarama industries', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'KRISHNAVENI WIRE NETTING INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'R  R STEELS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'A R WIRE PRODUCTS PVT LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Asian Wire Industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'mahalakshmi industries', ' District Name ', 'Guntur', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VISAKHA WIRE ROPES LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'SRI LAKSHMI WIRE MESH INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ATHIPATLA MESH INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SAI BALAJI LINK MESH AND POULTRY EQUIPMENT', ' District Name ', 'West Godavari', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'anu Wire Netting', ' District Name ', 'Krishna', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'Basic Metals & Alloy Industries', ' Activity Name ', 'Wire drawing & wire netting.', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'GREENPETAL INFRA AND RESOURCES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GH Building Solutions', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'VAISHNAVI AAC BLOCKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'D CON AAC BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '24']
[' Industry Name ', 'AMARAVATHI INFRA PROJECTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'ACE BUILD BLOC', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'YESKAY PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'anjaneiya fly ash', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Beeram Bricks industries', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pavani AAC bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GKSMART BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'AARUSH BUILDING MATERIALS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '47']
[' Industry Name ', 'NIMMAGADDA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'FUSION BUILDING MATERIALS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'SRI Vijaya bricks industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Devdatta industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Aparna lite built products', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rajeswari Harinacon Blocks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BONDADA ENGINEERING PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'SURYA BRICK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'A-SQUARE AAC PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRIKAR ENTERPRISES PRIVATE Ltd', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'AAC BRICKS & BLOCKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '22']
[' Industry Name ', 'Bhargava krishna clc light weight bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHAANKARI CLC BLOCKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'shiridi Sai brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'K K INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ']
[' Industry Name ', 'BRICKLITE', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'RAGHAVA CLC BLOCKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JV JV ENGINEERING AND CINSTRUCTIONS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Glorious Light Weight Bricks Company', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VMR BLOCKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'C L C BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay blocks and moulds', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LEIGHT WEIGHT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara light weight brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LEIGHT WEIGHT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Srinivasa Enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LEIGHT WEIGHT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'veera brahmendra bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LEIGHT WEIGHT BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'RATNAM LIGHT WEIGHT BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAVI LIGHT WEIGHT BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ssv brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'svflw bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GNR ENTERPRISES', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VKP INFRA CLC BRICK INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'u88BHARATHI BLOCKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TULASI LIGHT WEIGHT BRICKS AND BLOCKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SRI VENKATESWARA CLC BRICKS INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CELLULAR LIGHT WEIGHT CONCRETE BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rajeswari Flyash Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Pavani enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Balanjineya hallow bricks industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Vijetha fal g bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SHIRDI SAI BRICK INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VS FLYASH BRICK INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Preethiflyash bricks indutries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G M Cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara flyash bricks industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'suvarnaraju cement brick industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'B G H Cement Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri krishna bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Asoka Reddy cement bricks work', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Royal brick industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkateswara bricks bethapudi', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai ram bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI FALG BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ganesh industries', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MARUTHI VEERANJANEYA FLYASH BRICK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Amavarathi Precasting Industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'simhadri brick works', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'pathuri prassanjineya fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kodali fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ravindra Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'jayanarayana cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bismilla bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NARAYANA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'adavala gampamallaiah swamy bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS Balaji Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Anusha Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MSR bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri Murugan Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LALITHAMBICA BRICK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sandeep cement bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Satyanarayana fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Gnanambika Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vijaya venkateswara bricks industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI THIRUMALA CEMENT BRICKS INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Navabharathi bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tagore engineering works', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NALLARI MAHALAKSHMI CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MMNR AVENUES INDIA PRIVATE LIMITED', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'CHOWDESHWARI FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'HYMA quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sri Maha Vishnu Millers', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vasu industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Balaji Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MALLEVARI RAMAKRISHNAMMA BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Ramanjaneya falg brick', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshminarasimha briks industres', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venkata ramana fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ashok bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rangineni enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Krishina Cement Bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sravan Srinivasa Brick industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SAIRAM CC BRICKS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vijetha flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sai Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Raghavendra bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'NAGESWARA RAO BRICK INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LGS BRICK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Sri jayalakshmi cement pipes company', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ms venkateswara fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri neelakanteshwara bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Surya Flyash Bricks Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'SKS CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI BALAJI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VEL MURUGAN CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'lakshmi Narasimha bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Vinayaka Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'udaylakshmi bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'A1  Flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sanvi solid cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Om Sakthi Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI RENUKADEVI BRICK INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'K K BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Karumanchi Kameswararao bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri srinivasa', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EVANJALI FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI SAI FAL G BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS FLY ASH CEMENT BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Bhavani Fly Ash Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'setha rama bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Radha Cement Brick Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI VENKATESHWARA CEMENT BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SAI FAL G BRICK INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KGR cement bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'VARALAKSHMI BRICK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'veera narayanaswamy swamy prasanna bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Varasiddi Vinayaka Swamy Cement and Flyash Bricks Industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANJANI BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SS VIGNESWARA CEMENT  BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Ankamma Thalli Cement Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'penchalamma bricks manufacturing', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JYOTHI GAYATRI CASHEW MARCHATS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vinayaka Industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sathyanarayana bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri srinivasa cement works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Koththammathalli Falgi Brick', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'GADUPUTI SRINIVASULU FLOUR MILL', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'S M R Brick works', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI RAJESWARI CEMENT BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vizayanagar FAL Ghar products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'CHANDU FALG BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA BHAVANI CEMENT BRICK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Srinivas minerals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'B L R Cement brick Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Lakshmi Ganapathi Cement Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MEHAR CEMENT BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MER brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Veera Raghava Cement Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Vani Fal G Brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bharathi Briks Industries', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Balaji brick industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUDHEER CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Srinivasarao bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SSR FLY ASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'simhadri brick industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'pydithallamma FAL G brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bhulokamata Bricks Industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'chandragiri Gandhi prasad', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri chinthalamma cement and fly ash bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'K R R CEMENT HALLOW BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'G P R INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Robin Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE VENKATESWARA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Meghalaya brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri samptha sai brick unit', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Manikanta Bricks Industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'DISHALINI CEMENT BRICKS MANUFACTURING', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Surekha flyash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARAMESWARA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIDDHARTHA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara cement works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'ANUSREE FAAL G Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI BASAVESWARA BRICS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Padmavathi Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sai Fly bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI VINAYAKA CEMENT BRICKS AND SUPPLIERS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Karthik brick works', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATA SAI LAKSHMI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'KVR fly ash brick industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sreeniva cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI LAKSHMI FALG BRICKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'CVR Cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KNR BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Rama cement brick works', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VINAYAKA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KILLIPOLAMMA FAL G BRICKS INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Triple five cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Unnath bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI BABA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SHAIK AFZAL BRICS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Hymavathi cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bankuru bangaru Laxmi brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'bhavana reddy cement bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vishnu cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai Teja cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'H R R AMMAN BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VEERA BRAHMENDRA SWAMY CEMENT WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Paidimamba FAL G Bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Lokesh cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Durga Fly ash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'venkata kanaka durga flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI GAYATRI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MGCK INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Pillari Agency', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Hanuman flyash bricks industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri sai hanuman  fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'S V L N S ECOFRIENDLY BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri veera Venkata Durga cement works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MAHESH FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'D J R INDUSTRY KATRENIPADU', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Fly Ash Brucks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Durga fly ash brick', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ngr cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sailaja enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri venkateswara cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Aditya cement bricks mfg', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Manasa brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri ramakrishna cement works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'P S R BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'DARALAMMA THALLI BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'Sathyam cement bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara faul g bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Krishna bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bata gangamma cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'KARTIK FAL G BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI YOGENDRA SAI CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lahari industries', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Laxmi', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Govindappa Brick works', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VINEESHA BRICK INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MK BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sai Balaji Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri venkata sai bricks works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SAI SHARATHBAPUJI CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA PRIYA BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'KK BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'muneeswara cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAS CEMENT BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Eswara Brick industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SIVA RAMA FALG BRICKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi venkateswara cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JANAKA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'ayappa bricks industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SIVA BRICK INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'M D N BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SM CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Maruthi Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NILLAPALA RAMARAO BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SUDHAKAR INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateshwara cement and flyash bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri venkateswara plag bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'jai bharath brick industries', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VINAYAKA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vigneswara  cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Beaulaw cement brick industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bismillah Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI MANIKANTA FAL G BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Raghava Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'PRAGATHI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI JAYALAKSHMI CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PRAVEEN QUALITY BRICKS INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Ayappa quality bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri veeranjaneya bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHUVANA PRASODHA CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'kondadevathamma cement brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkateswara cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'ANJI FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri dhurga bhavani cement bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sireesha quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri laxmi cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Rama brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESWARA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHASKAR FALG BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMESH TRADERS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vigneswara Cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI SIVA SANKAR JALLI WORKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI BHAGAVAN VENKAIAH SWAMI CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri venkateswara cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'arogyamma brick industry', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'GAYATRI CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RADHAKRISHNA CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'RAMACHANDRAN CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MRR HOLLOW BRICK WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Anjaniputra enterprises', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'mundhara pottemma bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE VINAYAKA BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRINIVASA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sri Maremma cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'KNR CEMENT BRICKS INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'VENKTA RAMANAMMA CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SRI MURUGAN CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'INDIAN CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'lakshmiganapathibricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'RAMKRISHNA VRALA COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE MARUTHI BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Gopikasree cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SREE SRINIVASA ENTERPRISE', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'OM SAIRAM BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI H S BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Ganesh Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'HARIKA CEMENT BRICK INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'Sri Venkateswara Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SREE SREE SREE KALIKAMBAL CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Divya Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri raghava cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VIGNESWARA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Revathi Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'MS SREE LAKSHMI VENKATESWARA BRICKS INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkata Krishna bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'CHAND BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JAI HANUMAN BRICKS WORKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI DURGA BHAVANI ENTERPRISES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'RAVINDRA CEMENT BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Kanaka Durga Cement Bricks Industry', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi Chennakesava Cement Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bala balaji flyash bricks company', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BASHA CIVIL CONSTRUCTIONS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'P N S CONSTRUCTION MATERIALS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'FAUST PRECAST ABD INFRA PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri sai ratna enterprises and falji bricks industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mohanagangabavani cement design and flyash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Varalakshmi cement works', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI DURGA FAL G BRICKS INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'pilli naga venu babu', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'PALLAVI FLYASH BRICK INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI KASIREEDY SWAMY FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VARALAKSHMIFLYASH BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AAYYAPPA FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Thejasri fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'murali singala fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'JETTY FLY ASH BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATA SAI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HANUMAN BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VISHNU INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Gurram Murali Simhachala BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RASHI FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri shiva parvathi vigneswara cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MR BRICK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Vigneswara cement works', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KASA INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANNAMAIAH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'aravind fly ash brick', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Navitha Cement and flash bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri ram flats brics', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DURGA FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'JYOTHI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS RK BRICK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KEERTHI REDDY BRICK COMPANY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri ranga cement bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI AYYAPPA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri venkata sai fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'NAGARJUNA SPUN PIPES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISWANATH CEMENT BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Godavari fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Bhairaveswara Bricks Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VINAYAKA CONCRETE BLOCKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'precast construction and cement work', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'Amrutha bricks industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Abhishak cemenet brick industry', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'GANGA GREEN BRICK', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'mallesh cement rings and bricks making plant', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'cement works clay', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KS Pavers', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai surya poly bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Veerabhadreswara bricks and rings traders', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narayana Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRINUVASA ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Building  bricks and cement', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'abdhul mazeed cement design work', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Mother Cement Brics', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SREENIVASA HALLOW BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA SPUN PIPES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sri sri sri kanamahalaxmi falg Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI VENKATESWARA CEMENT BRICKS AND FLYASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sairam Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VINAYAKA CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lokesh cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Kareem enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA CEMENT CONCRETE PRODUCT', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Hanuman Building Materials', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri ramanjeneya flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI KRISHNA STEELS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VINAYAKA AJAY SRI AGENCIES', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'A GANGARAJU CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sridi sai bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Building Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sivayya falg Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri lakshmi narayana cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'NRV cement bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'OM ESWARA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'V K R Cements', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ARUNACHALA CONCRETE BLOCKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'krupa fly ash bricks and cc works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI MEENA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NEW MURALI FLAYASH BRICKS INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATESWARA CONCRETE BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sri stayadeva flyash brick industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Aravind bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA TRIVENI CEMENT CONCRETE WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANJI MUKTHAM CUPBOARDS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI POLERAMMATHALLI BRICKS INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Keerthana Cement Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'ms kamakshi charan brick industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sree sai baba brick industry', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'sks hallowbricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Soujanya enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'R K BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri pavan krishna sai enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Rahul Cement Block Industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JNR  CEMENT BRICK INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENGAMAMBA BRICKS INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'BHUVANESWARI INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TDN Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'TRIDEV CEMENT ARTICLES', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Haritha Fly Ash Bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LELLAPALLI CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri sai brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SAI PRASANTH CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ZOYA  FLYASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Cement Bricks & Blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Rishi quality brics', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri Venkateswara industry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'penchulaya cement works', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga Bhavani cement works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mani Cement works and Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Anil Parking Tiles Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SVR', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S V D P INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'sudarshan traders', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'JADEITE CONCRETE PAVERS PVT LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VISAKHA MASTER INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VSI ndustry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Immanni industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRINIVASA SPUN PIPES  CEMENT PRODUCT', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'FLORA DESIGNER TILES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAY HUME PIPES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Durga Designer tiles', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI VENKATESWARA SWAMI BRICKS INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'VICTORY TILES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT CONCRETE PAVER BLOCKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Siva lakshmi Rice mill', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'uriti thavudu bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nilammatalli bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'adikarla krishnarao', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TVK Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'kamaraju bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA BHAVANI BRICKS industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lankalapalli prasadh bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Obul Reddy brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Satya refractories', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri hanuman brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'lankalapilli srinivasarao', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Mallika brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'ammoji rao bricks suppliers', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'uriti appanna bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rajarao brick company', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Veera bhadra bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BHEEMARAO BRICKS MANUFACTURING UNIT', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'guruvulu bricks moulding', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KVR Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Balaji bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Kanaka Durga light weight clay bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri Vigneswara Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Venkata Durga light weight bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Modhamamba brick industrys', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'buchibabu Iruka batti', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sowjanya brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Sri Venkateswara light weight clay brick', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'valeti uma maheswararao bricks industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Venkata Siva Brick Industry', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA DURGA BRICKS AND TILES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AVAavaavala ramana brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara Brick work', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'DURGA BHAVANI CLAY BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'M N CHIDAMBAR', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RELANGI MARUTI CLAY BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'BANDARU NARASIMHA MURTHY BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'P S K mechanised clay brick', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'shankar brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Srivasa brick work', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '25']
[' Industry Name ', 'PAPARAO BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'EBI', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SATYA SAI CLAYS AND CERAMICS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Shirdi saibaba Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Rajarajeswari bricks shop', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Triplestar bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Veerabadra Cement  Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rajarajeswari bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Durga Bhavani Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VARALAKSHMI BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI TIRUMALA VENKATESWARA BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'ADURTHI HARISH CHANDRA RAO BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRIKAKULAPU SUBBARAO BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Kothuru Kondababu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Apparao Bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMA INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '15']
[' Industry Name ', 'VENKATESWARA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'B G H Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'veerarapu ramarao bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mohana rao bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MADHAMANCHI VENKATESWARLU CLAY BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '50']
[' Industry Name ', 'VNB BRICK INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'sairam bricks industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'S BRICK INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri neelakantesara swamy bricks industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MMN bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KAJA NAGESWARA RAO BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'venkata rao bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'mulagapaka soma raju clay bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Puliga ramana Clay Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SAI BRICKS INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'PRV BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MKB BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'gummala nooka Raju  clay bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SAI BABA BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'mulumudi brick field', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BRICK', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'brick industry 1', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Clay brick unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ramu Red bricks manufacturing', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'brick unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gowri bricks Manufacturing', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Aruna bricks Manufacturing', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Raja rajeswari bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'brick industry 7', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VASAVI TILE WORKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vengamamba Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'shiva bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Sujatha brick manufacturer', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'TAS BRICK WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Eswara Rao bricks Manufacturing', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Raghavendra Rao poultry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '20']
[' Industry Name ', 'sriujjayane mahakali bricks industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'subbaiah bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Satya Narayana brick works', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri durga bhavani bricks industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHARATHI BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'JAI SRIMANNARAYANA BRICK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'venkatreddy bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'RBI BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NVR BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ARSI SOLAPUR NAIDU BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ratnam bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'Sri kanaladurga bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'neelamatgalli brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '60']
[' Industry Name ', 'krishnaiah bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Narasimhulu bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRINIVASULU REDDY BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri anjineya brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshumma bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SAI BABA BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'TSS BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'champion bricks industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Venkataiah cement Bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Srirama brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Murali bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Brick unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'brick 6', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Gangavarapu Narayana Roa Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Red bricks industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'subbarayudu bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BRICK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'CHV BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Koduru Bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'AGB Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Annajirao rice mill', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANIKYAM BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SANKARA RAO BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SUBHAVATHI CLAY BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'Thammayya brick indusry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ABM Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'AVB Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chintala Appalanaidu Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'BHAGAVATI AEROBRIKS INDUSTRIES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'Sai Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SREENIVASA Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AMB Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'durgabhavani bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MKN', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Raj Bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SREENIVASA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sankar Clay Brick Unit', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LAKSHMI VENKATA SAI BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'dharbis naidu brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ANM AND OK BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Datta venkataramana tiles', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sree Balaji clay products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'rekha brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'KSR Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri srinivasa brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Bhavasri Tiles', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BRC', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'urigiti venkata rao', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Kranthi bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '52']
[' Industry Name ', 'G V Chalapathi', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'SRI MURARI REFRACCTORIES PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya Bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Fazurulla Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'vamsi Krishna brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'K J K Clay Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RRD  Clay Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI BALAJI MINERALS AND REFRACTORIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'brick industry 5', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'srinu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SVENKATRAMAPPA', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'brick industry4', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SRINIVASA TILES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'suredhar reddy bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'USN BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'V V Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'Brick industry3', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA BRICKS MANUFACTURERS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'GSK Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'bricks industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai vigneswara bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIGNESWARA BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Tejaswini Bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'venkata Ratnam Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'briks work', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'SLP Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Narayanaswamy Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Rama Krishna brick industry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sai Brick Industry', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'QUALITY BRICKS AND TILES COMPANY', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI ANJANEYA BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'MANIKANTA BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'brick industry 2', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Venu Brick Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Aruna Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'ASR BRICKS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'BINDU BRICKS INDUSTRY', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'pydi Damodararao bricks industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi venkateswara Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI CHENNA KESEVA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SBI bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'RAMANA Transport', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'kns clay bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sitarama Bricks Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'STAR TILES AND BRICKS INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'V SRINIVASULU BRICK INDUSTRY', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'NARSHIMHAMURTHY BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VENKATARAMANA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'BHASKAR REDDY BRICK LINE', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri vengamamba bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'KVS BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SRI BHAGAVATHI DURGA BRICKS EARTH', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'Sai Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SVS BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Jhansi bricks ttimmayapalem', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Datta Sai Bricks Industry', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ragavendra Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'LEGEND BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Eswari Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Mastan Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Yogendra Bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'RADHA KRISHNAIAH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SVB BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NRK BRICK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'Ankammatalli Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'VSR BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'LBS BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI CHENNAKESVA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SRINIVASA BRICK INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Venkateswara Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Rambabu Bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SREE BALAJI BRICK INDUSTRI', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'GSS BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Brick work', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESHWARA BRICK WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri Sai LBM Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'A S R Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESHWARA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'N R C Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'BALAJI BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BKT BRICKS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LGS BRICK WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'THUPAKULA BHASKAR', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VAS BRICKS INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'APARNA BRICKS INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI VISVASWARA BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sree Lakshmi Venkateswara No 1 Bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'NAGA MANIKANTA BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Madeena Light weight bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLAY BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SPILITE INFRATECH', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'PRATHYUSHA FLYASH BRICKS INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI SRI AAI JEE BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VADDU RAMA KRISHNAYYA BUILDING MATERIALS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri lakshmi venkateswara Bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'annapurna clc and fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vishnu Priya bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CLC and Flyash bricks and hydroponic tanks', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Amma palju bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri venkateswara palju bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri lakshmi ganapathi palju bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SIRI FAL G BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Brick Industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'pavan cal g bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'Musalithalamma fal g bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Srinivasa Fal G Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ']
[' Industry Name ', 'Sri Modhamamba Fal G Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'pallavi  priya Brick Industries', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ms Deepthi Fal G Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri musilimamba fal g bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri rama fal g brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RENUKA FAL G BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MSSRINIVAS FALG BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'venkateswara hydraulic falg bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri venugopala fal g brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'GRIPCO BRICKS AND TILES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri srinivasa FalG brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Rajeswari fal g bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'sri modamaba fal g bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Golden brick industry', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SIVARAMA FAL G BRICKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri venkataramana hydraulic fal G brick', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SATHISH FAL G BRICK INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI VASAVI FAL G BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'K G N FAL G BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'RADHA SRI FAL G BRICK IND', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'New rayalaseema FalG bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Appalanaidu falg bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara F L G BRICK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Sri Seetharama cement brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri sai ganesh falg bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna FalG bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'OM SRI SAI RAM FAL G BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '18']
[' Industry Name ', 'sri kanaka durga Fal g brick industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAYA LAKSHMI FAL G BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'JAYANJANEYA FAL G BRICKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SREE DEVI BRICKS FALG', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Satyanarayana Fal G bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRI FALG BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PAVAN SAI DURGA FAL G BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'LAKSHMI DURGA FALG BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Gowthami fal G bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sairam falgi bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHASAKARA POLGY BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'RJ PAL JI BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Simhachalam brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ms Sai Rupa Fal G Brick Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'NAVA CHAITANYA FAL G BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AYYAPPA FAL G BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri shirdi saibaba fal g brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri gowri shanker bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SVS Brick Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Ram Fly Ash Brick Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'M S Krishnaveni Fal G Brick Mfg', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Polamamba Fal G Brick Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Devi Fal G Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri vijaya falgi bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI SANTHOSHIMATA FALGI BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KRUPA FAL G BRICKS INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI MATHAJI FAL G BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'RVS FAL-G BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'SRI KALIKA RUDRA FAL G BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sai fal G bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sri sri Gowri parameswarlu fal G bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KSN FAL-G BRICK INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYACHANDRA FAL G PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri durga venkata falg  bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'RAJA FALG BRICKS INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sai Gayatri fal G bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Srinivasa Fal G Brick Industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Krishna fal G bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VENUGOPAL FAL G BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara cement bricks Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Sai Fal G Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI Surya Narayana Murthy Falg bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SRI VIJAYA DURGA FALG BRICKS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Surya FalG Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Baba brick industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Bhaskar brick industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'vishnu fal G brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bala Venkata Durga FAL G Brick Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HEMANTH FLAG INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sagar Quality Bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'srinivasa falg brick', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Deva Devi FalG Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAHARI FAL G BRICK', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Anaparthy Reddy FalG Brick Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MANISHAFALGBRICK', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SURYA FALFALG BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Lalitha FalG Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'USHA KIRAN FAL G BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI KANAKADURGA FALG BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM SRI SAIRAM  ALC BLOCK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'SRI SATYA HYDRAULICS FALG BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'ADISESHU QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Swathi quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Hanu bricks industrial', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI JAI HANUMAN BRICK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'pullaiah quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MADHAVI QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SREE VISHNU FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Om Sri Ramanjaneya Bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'shivani flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jagadeeswara fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sheshu bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sai Ram Hallow Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'sri   sai  fly ash  bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'venkata Sai fly ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANJANI FLYASH  BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri Venkata ramana fly ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAINADH HALLOW BRICK INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIGNESWARA BRICK INDUSTRIS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'DHANALAKSHMI FLY ASH BRICKS INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RANI FLY ASH BRICK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RUPA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Jyothi fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Nirmala quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'srinivasa bricks industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MANIKANTA BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Brick Industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vasu fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Durga fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Ramini Priya Flyash Brick Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vengamamba Brick Industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI LAKSHMI FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'somashekhar brick factory', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'datta sai flyash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'saidurga flyash  brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Anjeneya Concrete works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sri Raja Rajeswari Fly Ash Brick Industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri Srinivasa flyash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VIGHNESWARA FLYASH BRICK INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'Balaji fly ash bricks SSi unit', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '22']
[' Industry Name ', 'SRI DUGGIRALA BALA RAVAMMA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Hanuman Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'HASINA QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Surya fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIGNESWARA INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'MS Chowdeswari Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MANDAVA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAMA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'SREE RAMACHANDRA MOORTHY', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'SRI VIJAYA DURGA FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PAVAN TEJA FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'TIRUMALA CEMENT WORKS AND FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri sai hanuma flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'PADMA ENGINEERING WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SVS BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MARUTHI FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SVR FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'NAGAMANI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Veera brahmendra fly ash bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'touch flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sri venkateswara brick industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sathyanarayana Fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Maneesh flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Durga Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai hanuman flyash  brickes', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI MADHI ANJANEYA SWAMY FLYSH BRICKS INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri Vigneswara Fly Ash Bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SANDHYA BRICK INDUSTRY', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'anupamabrick tech', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri balaji flyash bricks gollapalli', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SRI ANJANEYA FALG BRICK WORKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'vinay bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Ganesh Quality Bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI SAMBASIVA FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KK Venkateswara Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Geetha quality Bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri  venkateswara fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Durga fly ash brick', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Venkata Ramana enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'FRIENDS FLY ASH BRICKS INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SLNS Flyash Cement Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Gayathri Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Nagamani flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ARUNA FLY ASH CEMENT BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYA FLY ASH BRICK INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SRI VENKATESWARA FLY ASH BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Padmaleela Fly ash brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'A1PARAMESWARA FLYASH BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SURAJ ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SRI VASANTHA BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA SAI FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'SAI GANESH BRICKS INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'AR FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'manikanta flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Sri lakshmi narasimha flyash brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI CHETANA Brick industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri Venkateswara Hallow Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'siva sankar flyash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SM FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARVATHI PARAMESWARA FLYASH BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VAMSI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Chandra flyash brick industries', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VENGAMAMBA BRICKS INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SIVA NAGA FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'jaya prabhu fly ash brick', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M S R INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE GURRAPPA SWAMY BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Ramadevi Flyash Bricks and Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIVANAGA FLYASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Durga flyash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AYYAPPA FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Sri venkateswara flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MS TANDAVA KRISHNA FLY ASH', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI NARAYANA FLYASH BRICKS INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRAVANA LAKSHMI VENKATESWARA FLYASH BRICK INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NEW VARADARAJASWAMI FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ARUNA QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'RAJU BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata sai Lakshmi', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'SREE MAHALAKSHMI BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SREE FLYASH BRICKS INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKHMI VIGNESWARA BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri gayatri flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Manikanta Fly Ash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'JAI SREE FLYASH BRICK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Satya deva Fly Ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Gopal Flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'mahalakshmi fly ash bricks industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'AYYAPPA FLY ASH BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri devi bulding material industies', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Srinivasa Brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'MANIKANTA FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'Rama Lakshmi FalG Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'NAGA SRI DEVI FLYASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS SRI RAM QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Mutyalamma Bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SREE VIJAYA LAKSHMI FLYASH BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MS NADHAN QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi venkateswara fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi Fly Ash Bricks Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYA LAKSHMI FAL G BRICK INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VANAJA FLYASH BRICK INDUSTRIS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA LAKSHMI FLYASH BRICKS INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vijay Lakshmi flyash brick', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI DHANA LAKSHMI FLYASH PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya Lakshmi Fly Ash Bricks Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'shiva Raghavendra Fly Ash bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SURYA FLYASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha Fly ash bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Sri satya sai fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri lakshmi thirupathamma fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sainadh bricks and pipes', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Jyothisri flyash bricks industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JAYA RAMA FLY ASH BRICKS INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'baba flyash brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Ms lakshmi brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sujatha fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri sai venkata durga fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Vari siddhi vinayaka hydraulic brick industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Kanakadurga Cement Work', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Raja Rajeswari hydraulic fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Jayalakshmi flyash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'NMN BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'PAVITHRA FLY ASH BRICKS INDUSTRY', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'madhavi fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'vinu Sharon fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri vaishnavi flyash brick industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'KANAKA DURGA BRICK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Navya Engineering Works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'abhyudaya bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GODAVARI FLYASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENGAMAMBA LAKSHMI NARASIMHA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'B2B Engineering LLP', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Lakshmi Thirupathamma Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VIJAYA DURGA FLY ASH BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Anjaneya Fly Ash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara Fly Ash Brick Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'lakshmi narsimha swamy industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'sai Ganesh fly ash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DIVYA FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri lakshmi venkateswara flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '14']
[' Industry Name ', 'Sri venkata Durga Cement works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI GAYATRI FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Rama Krishna Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Bismillah Bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'RUSHITHA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SHANMUKHA ANJANEYA FLY ASH BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'SRI GOWRI SANTHOSHI BRICKS INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'AYESHA FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Venkata  Sai Lakshmi  Narasimha Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Shiridi Fly Ash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sri sai fly Ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SV FLY ASH AND CEMENT BRICKS MFG', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sri banagaramma thalli fal g bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIRI CHARAN FAL G BRICK INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siddhi Sai Enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vivekananda fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SIVA SAI FLY ASH BRICKS INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SR BRICK INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'sri sai krishna fly ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'GURU PRASAD FLYASH BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri venkateswara flyash', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Vinayaka Brick Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HIMAGIRI FAL G BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sree Lakshmi Ganapathy Fly Ash Bricks Industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Sri Sai  Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'walbrix', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KRISHNA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S V R FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI GOWRI SHANMUKHA FAL G BRICK INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'Tirumala Brick  Industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lalitha flyash bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI SIVA SHANMUKHA FALG', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'BHARATHI FLY ASH BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri kundana flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SIRI FLY ASH PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VIJAYADURGA BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SAHIL BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ravi pologe brick', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SRINIVASA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi chennakesava swamy flyash bricks', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'MAHESWARA FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Krishna flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'JAMEELA FLY ASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MKR BUSINESS ENTERPRISES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VINKATA LAKSHMI FAL G BRICK WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI CHAITANYA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIMHADRI FLA  G  PRODUCTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'sai brick works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vissu Industries', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Sai lakhshminarasimha fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'prudhvi bricks industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri Thirumalagiri Venkateswara Swamy Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRIDEVI FLY ASH INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sai sampath enterprises', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Sri Venkateswara flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'SRI SIRI FLY ASH PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'RK flyash bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Krishna sai flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Laxmi Poorna Flyash bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'LAKSHMI VENKATESWARA BRICKS RAJAMPET', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sai Fly Ash bricks industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya sai flyash Products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA MAHESWARA FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sree venkateshwara fly ash cement bricks industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Sangam Structurals', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'sri shakthi beicks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Sai Ganesh fly ash brick industry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Rajadhani fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ksr suppliers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'VIJAYA LAKSHMI FLY ASH BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SIRI FLY ASH BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JR bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MARUTHI FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAIFLY ASH BRICK INDUSTRY', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Rk flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SR FLY ASH BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Lakshmi Narasimha flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Bharghavi Fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GANTANNA FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lucky fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DANDANJANEYA BRICKS Indl', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Venkateswara Fly Ash Bricks Industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V N R BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'EL SHADDAI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'RK INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sai bhargav fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA JYOTHI FLYASH BRICK INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai flyyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAMINENI FLYASH PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'JAI HANUMAN FLY ASH BRICKS Indl', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Venkateswara balaji bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Quality fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATA KRISHNA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Lakshmi Ganapathi Fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SSML fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'POLAMPALLI FLYASH PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRINIVASA FAL G BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'BVR FLYASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI ANJANEYA FAL GC FLY ASH BRICKS INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'mahi flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI VIJAYA BRICK INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI SANTHOSHI MATHA FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Balaji Cement Bricks', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Borra Ramesh Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Anupama flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI GAYATRI BRICK PRODUCT', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Karthik Koushik engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kanaka Durga Maheshwari fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'M S SATYANARAYANA FLY ASH BRICK WORKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'syamalamba bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Manikanta Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENGAMAMBA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MG Building Materials', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sai Durga MTR flyash bricks and groundnuts traders', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sai Lakshmi Fly Ash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MG Fly ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri vasavi bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYAKRISHNA BRICK WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI GANESH FLYASH BRICK INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ash Bricks MS Vijaya Lakshmi Fly', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MATHA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'swathi industries', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri srinivasa fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI BALAJI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYASAI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri lakshmi quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Lakshmi tirupatamma fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'murthy industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Jaya Krishna Cement Brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRILAKSHMI SRINIVASA FLYASH BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Shiridi sai fal g bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'KRR brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Nagaveni quality bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SR flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'OMKAR FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ARK FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SRINIVASA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durgha flyash', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Thirumala fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI MALLIKARJUNA CEMENT BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ROYAL BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri Kamakshi devi brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SIA Bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'GVL DEEKSHITH FLYASH BRICK', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'eswarflyashbricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '22']
[' Industry Name ', 'bhavani brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SAI BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SAI RAJESWARI FLY ASH INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MS SRI VIJAYA DURGA FLYASH BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VENKATEWSARA FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SRI Veera Venkata Durga Fly ASH Bricks and cement works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'BISMILLA BRICKS PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 's s mandala nirmith kendram fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Nookambika Fly Ash brick industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIMHADRI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MS VIJAYA LAKSHMI  FLY ASH PRODUCTS GDV 1', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAVI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAIL FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Ganesh Slab and General Merchant', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'madhu fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sai durga manaswini fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri lakshmi prasanna venkateswara flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sai Brick Industry', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'SRI NAGA SANTHOSHI MATHA CEMENT BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Bhavya fly ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BABA QUALITY FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Seethama Maya Lakshmi Flyash Brick', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Bhavani Brick Industries', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'PRASANNANJANEYA FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MOHANA SAI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI NARASIMHA CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'chandra sekhara fly ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MK Sravani Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'venkata rathnam fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI FLY ASH BRICKS INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'sri devi bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI RAMA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'JP FLYASH BRICK INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'JP FLYASH PRODUCT', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Aaron Fly Ash Brick Industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI GANESH FLY ASH BRICKS INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ARUNA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA BHAVANI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'MNR flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri laxmi venkateswaraa flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Varun flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri lakshmi flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venakateswara Fly ash Product', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HYDER CEMENT WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri sai ganga fly ash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MKR AEROCON BLOCKS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Durga manikanta bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sivamani flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'sri balaji flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vijaya Lakshmi flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Devi Fly Asha Industries', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Mangaveni Fly Ash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Poornima flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri anjineya swami enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri Ganesh Light weight Bricks Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri Sai Lakshmi Fal G Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'LAXMI THIRUPATHAMMA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Uma flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri sai bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SAI FLY ASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri sadgurunatha enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'sri rama flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'sri lakshmi narasimha swamy flyash brick industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SS fly ash bricks and cement works', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VENKATARATNAM FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srisainaveen Fly Ash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri lakshmi ganapati flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Vijaya Laxmi flyash', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SRI LAKSHMI FLY ASH BRICKS', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI SAI F A BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VIGNESWARA FLYASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'DURGAMBA FLY ASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'siva gayatri', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ANJANEYA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'MOUNIKA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'sri sai indu bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'rahil fly ash brick  industry', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi ganesh fly ash brick industries', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vinayaka flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'V V S REDDY FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'VSECOBLOCKS PVTLTD', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '35']
[' Industry Name ', 'MANIKANTA FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri lakshmi balaji flyash bricks industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'KARANAM QUALITY BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'S L N flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Sashikala Flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'chandu flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SAI BALAJI CEMENT AND FLYASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SUPRAJA FLY ASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SAI SANTHI CEMENT MOULDS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri OM NAMO VENKATESAYA FLY ASH CEMENT BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'NCL BUILDTEK LIMITED', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '32']
[' Industry Name ', 'SREE VENKATA SATYA SAI FLY ASH BRICKS INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'sri sai fly ash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI KAMAKSHI FLYASH BRICK INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'vigneswara fly ash bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'crazy fly ash bricks industries', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'HUSSAINVALI CEMENT  FLYASH BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'JP INDUSTRIES', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI VENKATESWARA BRICKS FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'vaishnav bricks', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DANESWARI FLYASH BRICK INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'MS INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'BHARATH FLY ASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Baba Fly ash Bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI LAKSHMI KAMBAGIRI SWAMY FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sudha flyash brick industry', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SURABHI BRICK WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'INDIAN BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SREENIVASA FLYASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Vijaya kanakadurga flyash bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Chikka Vijay Kumar Bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ABHAYANJANEYA FLY ASH BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KGN flyash and cement bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Deepthi  flyash  bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Buggarameswara Cement and flyash bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Sri Harini Brick industry', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'K K FLYASH BRICK INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI BRICKS FACTORY', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS SRI VENKATESWARA FLY ASH BRICK INDUSTRY', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri swathi bricks', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HABEEB FLY ASH BRICKS industry', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'ANUDEEP FLY ASH BRICS INDUSTRY', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'MOULALI SWAMY BRICKS INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SIDDESWARA ECO BLOCKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RESHMA FLYASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ROYAL FLY ASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMI SRINIVASA FLY ASH BRICKS', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Prama sai flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sree Keerthika fly ash bricks industry', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'sri balaji hallow bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VEERANJANEYA FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'SAI MANIKANTA FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'M J R FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Balaji brick industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SRI JAYASAI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAI FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshmi Narasimha Swamy flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Nagadurga fly ash bricks Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Lakshmi venkateswara fal g bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Inswareb', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Adi Lakshmi fly ash industry', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Siva Kalyan Enterprises', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '23']
[' Industry Name ', 'JAMALAIAH SWAMY FLY ASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri sai srinivasa Fly Ash Brick Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMA FLYASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SAIRAM FLYASH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SN BRICKS AND BLOCKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI VIGNESWARA SPUN PIPES AND CEMENT WORKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Nagamani Bricks company', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRINAVASA flas BRICKS', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Naveen flyash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'KSR FLY ASH BRICKS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SWAMY AYYAPPA BRICKS INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI POLERAMMATHALLI BRICKS INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VENKATESWARA FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Narasimha flyash products', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'GANESH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Flyash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri lakshmi varadaraja flyash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'borra ramesh flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MAHA LAKSHMI ENTERPRISES AND FLY   ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mahalakshmi Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'INDIRAMMA FLYASH BRICK PLANT', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VIJAYA LAKSHMI BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI RAJ BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA FLY ASH BRICKS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'BHAVANI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYASAI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ravindra Brick Industries', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Fly Ash Bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'LEELA KRISHNA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Sri Siva Durga Mason works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'VRF CEMENT BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Veerabadhra fly ash bricks', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RAJA FLYASH PRODUCTS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'VENKATA SAI EGG TRAYS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'vijayalakshmi flyash bricks', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA CONCRETE BLOCKS ENTERPRISES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'NAGAMANI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'OM GAYTHRI FLY ASH BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Penchala lakshmi Narasimha swamy Bricks', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'ASHA FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Star Brick Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Sri Viswa sai techno blocks pvt ltd', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'LAKSHMI GAYATRI FLY ASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'Navjyoti Brick industry', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Siddhi Vinayaka DNR Fly Ash Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Harshini Concrete Millers', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'KANAKA DURGA FLY ASH BRICKS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'Bheem eco build tech', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri Srinivasa Flyash bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'ECO-CARE BUILDING PRODUCTS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '19']
[' Industry Name ', 'MALLESWARI CEMENT WORKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Vasavi Concrete solutions', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'LITEBRIX BUILDING MATERIALS PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'NAGARAJA FLYASH BRICS', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'N R INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'AMEER FLYASH BRICK INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash bricks / blocks manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SR infra constructions', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'UMADEVI FLYASH AND CEMENT BRICKS', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'Sri Lakshmi Ganapathi Flyash Bricks', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SMK TRADERS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA  INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI BRICKS', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'RR INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'JAYACHANDRA INFRA STRUCTURALS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Chanikya Cement Products', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Perfect Concrete Products Private Limited', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '13']
[' Industry Name ', 'AB ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly ash Bricks and paver blocks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'srivenkateswara lite weight bricks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'JDM Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'V briks', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'R BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Bharathi brick industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '8']
[' Industry Name ', 'TANVI INDUSTRIES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KOPPAKA VENKATA RAMANA', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'CVN Bricks', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Panduru Chellam Naidu', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI KRISHNA INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Ayyappa Bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Ayyappaswamy Bricks', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'sri laxmi ramana enterprices', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Annie Green Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manfacturing Light Weight Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'sai vaishnavi traders', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacture Of Clc Bricks and Fal-G Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'unicon infra products', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacture Of Clc Bricks and Fal-G Bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Sri Lakshmi Phal Ji Bricks', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacture Of Clc Bricks and Fal-G Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'SVM ECO BLOCKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacture Of Clc Bricks and Fal-G Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'papasani precast industries', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '20']
[' Industry Name ', 'DEZIRE PRECAST PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'hanuman parking tiles', ' District Name ', 'Prakasam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'HINDUSTHAN TILES INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI BABA BRICKS MANUFACTURING', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'VALLEPU RAJESH BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SESERA BRICKS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'LOKESH BRICK INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'Vinay Designer Tiles', ' District Name ', 'Kurnool', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Bricks and Paver tiles', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'GODWIN INDUSTRIAL CORPORATION', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Wire cut Bricks (Mechanised) and flyash bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'DEVI BRICK INDUSTRIES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Manufacturing of Wire cut Bricks (Mechanised) and flyash bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'USHA REFRACTORIES', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Rekon Ceramics and Refractories', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SAI CERAMICS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'RAJENDRA CLAYS AND CERAMICS', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAI SURYA CIRAMIC INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga Ceramics', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'SRI LAKSHMI CERAMIC INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'SRI VARI JJ INDUSTRY', ' District Name ', 'Chittoor', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SLR INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'BOPPUDI REFRACTORIES PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'SAI BRICKS COMPANY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'VESUVIUS REFRECTORYINDIA PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'JAIVEER ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'HINDUPUR CERAMICS AND REFRACTORIES', ' District Name ', 'Anantapur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'R and D in refractory bricks', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sri anjaneya industries', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRINIDHI CHEMICALS', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri parameswari lime industries', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'chalagiri veerabrammam', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MALIK LIME CHEMICAL', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vengamamba chemicals', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'clean home fancy and household products', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lalithambika lime industries', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'DELETE CHEMICALS PVT', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Viraajitha chemicals', ' District Name ', 'Vizianagaram', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI BAR  AND RESTAURANT', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGASARAPU PADMAJA Essential oils', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'kssb chemicals pvt ltd', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'B and L coating products', ' District Name ', 'Vizianagaram', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'sreevari chemicals', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'INSTA oxygen', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rays organics', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Sri sai Carbonic and industrail gases', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Southern Megnesium and chemicals', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'sobhabio', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Gowtami chemicals  pesticides pvt ltd', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'BEZWADA BIOMEDICAL RESEARCH PVT LTD', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '19']
[' Industry Name ', 'JP PAINTS AND  COATINGS', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'subhodaya chemicals private limited', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '66']
[' Industry Name ', 'ALEkYA PET bottles', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'prime detergent products industries', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SSV INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Pooja polymers', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI RAM MINERALS', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '16']
[' Industry Name ', 'Sri vijaya mavulleswari coach builder works', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Floris chemitec', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'VAMARAJ HOME CARE PRODUCTS', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Venkateswara Sulphur Products', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SREE LAKSHMI SREENIVASA CHEMICALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GVK color coats', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'ROSHAN INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SURESH CHEMICAL INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SURESH CHEMICAL INDUSTRIES UNIT2', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'YG PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GAYATHRI CHEMICALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BHAGYANAGAR CHLORIDES PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '93']
[' Industry Name ', 'NAGARJUNA CERA CHEMICALS PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '10']
[' Industry Name ', 'MS TYCHE INDUSTROES LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '145']
[' Industry Name ', 'V J  LABORATORIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANAPATI CHEMICALS', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'APEX AEROSOLS', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'Quick Wash Laundrite', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Swetha Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Satya Chemicals', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'vestro solvents Pvt ltd', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'IM SHAEIFF Perfumers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERANJANEYA RICE MILL', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJJY INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SSV Enterprises', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '9']
[' Industry Name ', 'Sri Bhavani Agarbathi Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Enterprises', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Trimex industries Pvt LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'SRI SAI ENTERPRISES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'LAKSHMI SRINIVASA CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'WEISMANNA HEALTH CARE PVT LTD', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'TARINI INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '13']
[' Industry Name ', 'Biomed International', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'AMBUJA PAINTS LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'SUNTEK COATING INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'YMT INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MADHU COTTAGE INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Good Will Trade Lines', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '21']
[' Industry Name ', 'MSR enterprises', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SIGC chemicals', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Teja ashramam', ' District Name ', 'Prakasam', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya Durga traders', ' District Name ', 'West Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'EAST FOME INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '14']
[' Industry Name ', 'NEERAJA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MR CHEMICALS', ' District Name ', 'Chittoor', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHASETHI SOAP PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Thai Organics', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Durga Minerals', ' District Name ', 'Kurnool', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri siva sai chemical works', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'sri Lakshmi ganapathi enter prises', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'image test 3', ' District Name ', 'Krishna', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Bramhas Colur Criation', ' District Name ', 'Kurnool', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRF Industries', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'APEX INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'AULTRATEK COATS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Suraksha Oxygen Company', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Kevys labs', ' District Name ', 'Guntur', ' Sector Name ', 'CHEMICAL', ' Activity Name ', 'Chondroitin Sulphate', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'k Sabira', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Balaji Packers', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SLV industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'JAGRITHI  COTTAGE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi narayana Agarabathi s', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MEGHANA ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SVSK CANDLES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'Surya Candles', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'krishna kaveri puja products', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MARUTHI ENTERPRISES', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'vayugundla industies', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Lakshmi Agarbatti', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MEENAKSHI AGARBATTI', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'LAKSHMIPATHI AGARBATHI', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI PRASANYA AGARBATHIS private limited', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '13']
[' Industry Name ', 'VCCR RICE MILL', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'MS UP VEENA ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'SRI SIVA ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '17']
[' Industry Name ', 'Ganapathi pooja', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SHREE SHIVA SAI MARUTHI KRISHNA AGARBATTI PRODUCTS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Aruna Agarbatti Industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'RAMBHA UNNATHI AROMA PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '19']
[' Industry Name ', 'Gorantla Ram Agarbathi Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'aswini agarbatties', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'PARIMALA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Datta Sai balaji industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SAI JYOTHI AGARBATTIS', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Agarbatti Manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sovereign Agri Industries', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'ALUMINIUM SULPHATE FERRIC', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Satya Sai Chemical Product', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'ALUMINIUM SULPHATE FERRIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Sree Rayalaseema Galaxy Projects Pvt Ltd Alum Division', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'ALUMINUM SULPHATE NON FERRIC', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'uma maheswar slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Assembling of Acid lead battery', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'NEW P R MINERALS  CHEMICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Barytes Pulverisation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'KN MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Barytes Pulverisation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'SRI TIRUMALA MICRO MINERALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Barytes Pulverisation', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'TVR infotech', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Barytes Pulverisation', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'pinko chemicals', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Basic chemicals and electro chemicals and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'THE ANDHRA SUGARS LTD C and F Division Saggonda', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Basic chemicals and electro chemicals and its derivatives', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '20']
[' Industry Name ', 'Prasad Organics Private Limited', ' District Name ', 'Prakasam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Basic chemicals and electro chemicals and its derivatives', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '18']
[' Industry Name ', 'NAGARJUNA BIO FUELS', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Basic chemicals and electro chemicals and its derivatives', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'CHEMTECH ALKOXIDES PVT LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'BIO DIESEL AND GLYCERIN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'Hindustan petroleum corporation Limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'BIO DIESEL AND GLYCERIN', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'VISAKHA ASPHALTS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'BITUMEN EMULSION BLOWN BITUMEN', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'SANVIRA INDUSTRIES LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'CALCINED PETROLEUM COKE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '151']
[' Industry Name ', 'Vinci chem Pvt limited', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Coromandel Met Coke Industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'COAL AND COKE PROCESSING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'the Godavari gas company private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Compressed oxygen gas from crude liquid oxygen', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SHAKTHI INDUSTRIAL GASES PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Compressed oxygen gas from crude liquid oxygen', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '29']
[' Industry Name ', 'Gee Cee Suppliments Unit II', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Construction Additives Chemicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Macpac Industries Private Limited', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Construction Additives Chemicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'clean tech corrosion chemicals', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Construction Additives Chemicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Bharathi consumer care products private limited', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SRI LAKSHMI SRINIVASA CHEMICALS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'STARCHEM INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SIVA SHAKTHI SOAP WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'MS MANTHRA SOAP WORKS', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'C G S DETERGENTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'lalitha lakshmi venkateshwara industries', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'OM SATYA SAI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'ECOF INDUSTRIES PVT LTD', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SRI VIJAYA LAKSHMI SOAPS AND CHEMS', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'DETERGENT SOAPS AND POWDER', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'SAI CHEMICALS', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Distilled water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'CRUX BIOTECH INDIA PVT LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Extra Neutral Alcohol & Rectified Spirit', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '179']
[' Industry Name ', 'MS BIOTECH PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Extra Neutral Alcohol & Rectified Spirit', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '113']
[' Industry Name ', 'SAMBASIVA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Sree VijayaLakshmi Speciality Chemicals', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'FORTIFIED ROSIN', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'Ms NAVYA WASTE AND USED OIL REREFINING AND RECYCLING INDUSTRY', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'furnace oil', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'Rohit Gases', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Gas Filling in Cylinders', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'kishore creative arts', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'GYPSUM PLASTER AND BOARDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'ARQUBE INDUSTRIES INDIA LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'HUMAN HAIR PROCESSING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '22']
[' Industry Name ', 'RK HAIR PRODUCTS PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'HUMAN HAIR PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '149']
[' Industry Name ', 'INDIAN HAIR INDUSTRIES PVT LTD', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'HUMAN HAIR PROCESSING', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '167']
[' Industry Name ', 'shalom works', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Fusion gases', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'INDUSTRIAL GASES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', '1', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Industries engaged in recycling / reprocessing / recovery / reuse of Hazardous Waste', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Amara Raja Batteries Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Lead Acid battery manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '249']
[' Industry Name ', 'POWER OXIDES PVT LTD', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Lead Acid battery manufacturing', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'tirumala chemical industries', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Lime manufacturing (using Lime Kiln)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Mohan Alum', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Liquid Ferric Alum', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Venkata Sai Chemicals', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'JAIVIN SURFACTANTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 's v  enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LIQUID OXYGEN CYLENDERS FILLING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Lubricating oil shop', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Vijay lubricants', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VSR LUBRICANTS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'Vijaya oils', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'jyothi lubricants', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI BALAJEEE LUBRICANTS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'ATMA LUBRICANTS AND SPECIALITIES LTD', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'LUBRICANT OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'NARSONS PHARMA', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURE OF BASIC CHEMICALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'VIJAYA PAINTS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURE OF BASIC CHEMICALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NUTRI BIO PHARMA', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURE OF BASIC CHEMICALS', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KARTHICKLA AGARBATTIS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURE OF BASIC CHEMICALS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'SAHANA AIR PRODUCTS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURE OF INDUSTRIAL GASES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'VISHNU BARIUM PRIVATE LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF ALL BARIUM AND SODIUM SALTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '131']
[' Industry Name ', 'RCS CHEMICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF ALL BARIUM AND SODIUM SALTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '18']
[' Industry Name ', 'Sree Rayalaseema Hi strength Hypo Ltd unit III', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF BASIC INORGANIC CHEMICALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '13']
[' Industry Name ', 'SRIKAR CHEM AND PHARMA INDIA PRIVATE LIMITED', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF BASIC INORGANIC CHEMICALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '39']
[' Industry Name ', 'CHAITANYA BARIUM INDIA PVT LTD', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF BASIC INORGANIC CHEMICALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '11']
[' Industry Name ', 'CHAITANYA CHEMICALS UNIT II', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF BASIC INORGANIC CHEMICALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '58']
[' Industry Name ', 'EKASILA CHEMICALS LIMITED', ' District Name ', 'Srikakulam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF BASIC INORGANIC CHEMICALS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'AARVEE AQUATECHS PRIVATE LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KANORIA CHEMICALS AND INDUSTRIES LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '102']
[' Industry Name ', 'GMK LABS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '32']
[' Industry Name ', 'AKSHYA CHEMICALS PVT LTD', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '21']
[' Industry Name ', 'GLOCELL CHEMICAL INDUSTRIES PRIVATE LIMITED', ' District Name ', 'Prakasam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '14']
[' Industry Name ', 'sri sai acetylene company', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'MEENAKSHI ALLIED CHEMICALS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'GAJALAKSHMI MACRO PRODUCTS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'RAGHUNATH DYE CHEM PRIVATE LIMITED', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '17']
[' Industry Name ', 'RAGHUNATH DYE CHEM PVT LTD UNIT-II', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '13']
[' Industry Name ', 'Ms Shivtek Industries Pvt Ltd', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '35']
[' Industry Name ', 'SIRIS SYNERGY PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'SRI RAGHAVENDRA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'COASTAL CHEMICAL INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI MARUTHI COLOURS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'MUKESH PAINTS INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Pavan Sai traders', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Gee Cee Suppliments', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'MS PAINTS', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF CONSTRUCTION CHEMICALS PAINTS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI DEVI LIQUIDS', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Diesel Exhaust Fluid', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'Bharat petroleum corporation ltm', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Diesel Exhaust Fluid', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'Shayan petro Agencies', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Diesel Exhaust Fluid', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'IWL INDIA LIMITED', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Emulsion from Bitumen', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '5']
[' Industry Name ', 'Mixxon petrochemicals private limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Emulsion from Bitumen', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'SK  basha mohiddin fire works', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SRI LAKSHMI PADMAVATHI INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Glue and gelatin', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE VENKATESWARA INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Glue and gelatin', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI VENKATESWARA CANDLES AND CAMPHOR', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Glue and gelatin', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SHANMUKA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Lakshmi lubs', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'JMR  PETRO INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Kanaka Durga cement works', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF GROUND GRANULATED BLAST FURNCE SLAG', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sai Maruthi Chemicals', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri balaji soap works', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'HARIKRISHNA ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SLV ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'LUCKY ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SREE JYOTHI ENTERPRISES', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '6']
[' Industry Name ', 'JOSHITA ENTERPRISES', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of House hold Cleaning Products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'AVM MATCH WORKS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of match boxes', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '6']
[' Industry Name ', 'Laalasa Industries', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'VIJAYA SARADHI ASHA PAINTS', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Harish paints', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'MYTRI PAINTS', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Krishna paints', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'HIMAGIRI CHEMICALS', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SRI SIVA SAI ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'COROMANDEL PAINTS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Karthikeya protective coating', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Ms SRI SHIRDISAI INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Kumar agencies', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'PRAMOD PAINTS LLP', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'YUVA TEJ POLYMERS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'COROMANDEL PAINTS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'VINAYAKA CEM PAINTS INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Asian Paints Limited', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Nishanth fragrances', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF PERFUMES', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '9']
[' Industry Name ', 'Royal Perfumes', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF PERFUMES', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'S P RESIN INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Resins', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'BHALAJI POLY RESINS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of Resins', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'sree rayalaseema Hi strength hypo ltd unit 2', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF SODIUM HYPO CHLORITE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '24']
[' Industry Name ', 'MEENA ENTERPRISES UNIT II', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF SODIUM SILICATE', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'FUSION ADVANCED MATERIALS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF SODIUM SILICATE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '17']
[' Industry Name ', 'MEENA ENTERPRISES', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MANUFACTURING OF SODIUM SILICATE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '8']
[' Industry Name ', 'surya inorganics', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of synthetic organic chemicals', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Saptha industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Manufacturing of synthetic organic chemicals', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '18']
[' Industry Name ', 'VKR ENTREPRISE', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'DEEPTHIRAJ INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SRI VENKATESWARA INDUSTRIES SUN GOLD SOAPS', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SHRI VIRUPAKSHI ENTERPRISES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'ADITYA INDUSTRIES', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SAI NATH INDUSTRIES', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'Nandi soaps Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'UNIVERSAL HOME PRODUCTS', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals']
[' Industry Name ', 'SOVEREIGN OXYGEN', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Medical oxygen', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'INOX AIR PRODUCTS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Medical oxygen', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'sri karthikeya gas agency', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Medical oxygen', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VARASI OXYGEN', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Medical oxygen', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SST GASES', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Medical oxygen', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Dandamudi anjaneyulu and anasuyamma trust', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GANGA WATER PLANT', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'cpw pure water', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'ayyappa drinkingwater', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Gopi water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'DOLPHIN WATER PLANT', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Lakshmi sheshadri RO water plant', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'saisowmya drinkingwater', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SHREE BALAJI CHARITABLE FOUNDATION', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Mineralized water', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kalluri enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MIXING OF PAINTS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Padha Lubes and Petro Chemicals', ' District Name ', 'S.P.S.R. Nellore', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'MIXING OF PAINTS', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '12']
[' Industry Name ', 'RAKESH TRADERS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'NON EDIBLE OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Taj candles industries', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'NON EDIBLE OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'DBS PHARMA PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '7']
[' Industry Name ', 'Sri sindhu beauty care', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree Rayalaseema Hi Strength Hypo Ltd Unit IV', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '26']
[' Industry Name ', 'Sanjeevani bio remedies', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '11']
[' Industry Name ', 'STABILITAS SOLVENTS AND CHEMICALS PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '24']
[' Industry Name ', 'Sree Pavan Chemicals and Minerals', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '21']
[' Industry Name ', 'IVAX PAPER CHEMICALS LTD', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Organic chemicals manufacturing', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '64']
[' Industry Name ', 'Sri Satya Cryogenic Gases', ' District Name ', 'Srikakulam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Oxygen Gas Fillilng', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'COROMANDAL INDUSTRIAL GASES PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Oxygen Gas Fillilng', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '24']
[' Industry Name ', 'EXCEL INDUSTRIAL GASES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Oxygen Gas Fillilng', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'Apex Oxy Zone', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Oxygen Gas Fillilng', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Abhirama Air Products', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Oxygen Gas Fillilng', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'VIJAYA PAINTS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Paint blending & mixing (Ball mill)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Rithvika Paints', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'Indus Paints', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'gama chem industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vijaya durga paints and chemicals', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'colour india paints industries', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'NAVYA KRISHNA PAINTS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'M K GOLD PAINTS PVT LTD', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'white gold cashew industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'Jaykay Industries', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PAINT MANUFACTURE', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'nagasai industries', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Paints and allied products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Max India Paints', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Paints and allied products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '12']
[' Industry Name ', 'anil paints', ' District Name ', 'Prakasam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Paints and allied products', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'EAST COAST PAINTS PRIVATE LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Paints and allied products', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '4']
[' Industry Name ', 'VIS SIGNS PRIVATE LIMITED', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Paints and varnishes (mixing and blending) without ball mill', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'MARUTHI INDUSTRIES', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Petrochemicals (Manufacture of and not merely use of as raw material)', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SSR filling station', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Petrol fuel filling station', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'KONDA KISAN SEVA KENDRA FILLING STATION', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Petrol fuel filling station', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Sri koteswara filling station', ' District Name ', 'Kurnool', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Petrol fuel filling station', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'AKSHAYA ENTERPRISES', ' District Name ', 'Vizianagaram', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Phenyl / Toilet cleaner formulation & Bottling', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'sri tirumala chemical industry', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Phenyl / Toilet cleaner formulation & Bottling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Sri Rama Polymers', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PLASTIC COMPOUNDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siddi Vinayaka Poly Pack Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PLASTIC COMPOUNDS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'KELLY LIGHT FOAM INDUSTRIES', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Polyurethane foam making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'MCNS POLYURETHANES INDIA PVT LTD', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Polyurethane foam making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '13']
[' Industry Name ', 'TRUSTIN FOAMS', ' District Name ', 'Chittoor', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Polyurethane foam making', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '10']
[' Industry Name ', 'VVKR Briquetting Products', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Pulverisation of Petcoke', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'SRI VENKATESWARA BIO CRUDES', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PYROLYSING WASTE RUBBER AND PLASTIC', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '4']
[' Industry Name ', 'je pyrolysis plant', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PYROLYSIS OIL', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '1']
[' Industry Name ', 'Sri durga industries', ' District Name ', 'Srikakulam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'PYROLYSIS OIL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'SHV ENERGY PVT LIMITED', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Regasification of LNG into natural gas', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '8']
[' Industry Name ', 'PUTTAIAH SOLVENTS PVT LTD', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Solvent Extraction', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '3']
[' Industry Name ', 'sruthi chemicals unit1', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Solvent Extraction', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '46']
[' Industry Name ', 'Maa durga Industries', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Storage Petroleum products and Liquid Chemicals', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'S R K Industries', ' District Name ', 'Anantapur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'SULPHURIC ACID', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '7']
[' Industry Name ', 'VIJAYA DURGA PETRO CHEMICALS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Used oil and waste oil reclamation unit', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '3']
[' Industry Name ', 'Rama industries', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Used oil and waste oil reclamation unit', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BALAJI PETRO CHEMICALS', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Used oil and waste oil reclamation unit', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '1']
[' Industry Name ', 'SRI DURGA INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Used oil and waste oil reclamation unit', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '9']
[' Industry Name ', 'RK LUBRICANTS', ' District Name ', 'Kadapa', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Used oil and waste oil reclamation unit', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '2']
[' Industry Name ', 'SWETHA PAINTS', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Wall care Putty', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MAHI DRYMIX PRODUCTS PRIVATE LIMITED', ' District Name ', 'Guntur', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Wall care Putty', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SREE SAI TEJA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'Waste coconut shells & temple coconut shells converted into charcoal', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'Sri Siva Sai Petroleum Products', ' District Name ', 'Krishna', ' Sector Name ', 'Chemical & Petro Chemicals', ' Activity Name ', 'waste Recycling', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kali Krishna enterprises', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEJELLA COIR AND AGRO PRODUCTS PRIVATE LIMITED', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Kumari coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SS FIBERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Laksmi Narayana coir pvt limited', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'kali Krishna fibre and oils', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'satya sai industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Kali Krishna coir', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI VENKATESWARA COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'P RAMMAMOHANRAO AND SON', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Laxmi ganesh coir industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'sai ram engineering works', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Narayani Govindh Fibres', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'vutukuri vuma prasad', ' District Name ', 'Krishna', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'GOLDEN MATTRESSES PVT LTD', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '39']
[' Industry Name ', 'FOAM FIBERS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'CHANDI PARAMESWARA COIR AND COIR PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'COIR PITH BLOCKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri pallalamma coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SURYA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'ESWAR SURYA COIR ROPE INDUSTRY', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Ome shanthi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'y satyanarayana', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'ESBEE COIR INDUSTRIES', ' District Name ', 'Srikakulam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'KARUNAMAYA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Parvathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Padmavathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'SVK COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri sai durga coirs', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sree ramulu coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Satyavathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Satya Sai enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'venkata satya durga enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LMR IMPEX', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAI RAM FIBERS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAKSHMI NARAYANA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'MAHA GANAPATHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '18']
[' Industry Name ', 'SRI VENKATESWARA INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI ANJANA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Ammaji coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI GAJALAKSHMI OIL MILL', ' District Name ', 'Anantapur', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PARIJATHA COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MS HARINI FIBRE INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri satya coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Padmavathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'nagaraju coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri rama coir industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'sri tirumala enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'James coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Venkateswara coir industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Lakshmi Ganapathi  Coir Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Durga Raja Rajeswari coir industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '20']
[' Industry Name ', 'sri aditya enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'lazor coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'china mastan', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'venkteswara coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Illa neeraja coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Durga Coir Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'kondalrao coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'gangabhavani coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'surendra coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'talupulamma coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI GANESH COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri bhaskara sai coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KRISHNA PRIYA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmi durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'varalakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'nagalakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Eswari coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'ATHILI BALAVEERAMANI', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI SUBRAMANYESWARA COIR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SIRISHA TRADERS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SRIRAMYA COIR UNIT', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'PRIYA MITRA COIR PRODUCTS', ' District Name ', 'Vizianagaram', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '16']
[' Industry Name ', 'NALLA SATYAVATHI', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Anjanj Coir INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'M N LAKSHMI', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SRI MAHA LAKSHMI COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Srinivasa Coir Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SRI SRI VIJAYA DURGA COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Illa naga venkata durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SIVA DURGA COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '12']
[' Industry Name ', 'Sri Baktha Anjaneya Swamy Coir Yarn Unit', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Dakshayani Coir Products', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA COIR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '40']
[' Industry Name ', 'Sri Venkata Ramana Coir Industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'SRI SINIVASA COIR PRODUCTS', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '10']
[' Industry Name ', 'SATWIK COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'SUMA COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI VIJAYA LAKSHMI COIR INDUSTRY', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'ramalingeswara rao', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkateswara coir rope industry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '11']
[' Industry Name ', 'ganganna coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI Satya Coir Industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'palla ammiraju coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'palla srinivasarao coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'LAXMI TEJASWI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '14']
[' Industry Name ', 'karri coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'gopala swamy coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Kanaka durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'paparao coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SIVA GANESH COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Dolphin Coir Yard Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'sri gayathri coir industry', ' District Name ', 'Srikakulam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'VEERESWARA SWAMY COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI DURGA COIR YARNS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'renuka coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri venkata Durga BHAVANI coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'subbayamma coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri vijaya coir spinning unit', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sravan coir industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Satya Sai coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Vijayalakshmi Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'Tejasri coir and rope manufacturing unit', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'vigneswara coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Pati china Satyanarayana coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Narasimha coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'venkateswara coir  induatry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN COIR', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Srinivasa Coir Rope Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'srilakshmi durga coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sai coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'srinivasa coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bhagyalakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'vijaya durga  coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'satya coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sri sai balaji coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SVLM COIR  INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '12']
[' Industry Name ', 'srinidhi coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri dhana lakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Siva Baba Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'viswas coco products', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Durga Bhavani coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'toshali fibres', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'likitha coir yarn industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SARASWATHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATESWARA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Durga devi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Bhavani coirs', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'vardhani coirs', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'prabhakar coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'G fibers', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri sai manikanta coir rope spinning unit', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'MAHA LAKSHMI INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Annapurna coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'viswas coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Satya Durga Fibers', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rahul coir product', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'siddhi vinayaka coirs', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'MS SIRI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SBR COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Bala Balaji Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'ms mahalaxmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA  FIBRE INDUSTRIES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Durga ganapathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Pawan coir products', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Satya Sai Coir Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Satyakrishna coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'siddivinayaka coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Deepak Coir and Coir Products', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'kalyani coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MOKSHA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'likitha anjani coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'GREESHMA COIR INDUSTRY', ' District Name ', 'Krishna', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Rani coir Indistry', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'ABDULLA COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'MS SRI VIJAYA BHAVANI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sujatha coir industry', ' District Name ', 'Krishna', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Siddivinayaka coir rope industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI RAMA DEVI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Krishnaveni coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SANKAR FIBRES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'COIR YARN MANUFACTURING UNIT', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'PRANEETHA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Venkata lakshmi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri siddhi vinayaka coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'KANAKA DURGA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya Sai Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sadhguru coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Vijaya nirmala coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Amrutha corris', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'RAMANA SAI COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'Siva kameswari  coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Vijayalakshmi Coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Manikanta Coir Fibre Manufacturing', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Satya venkata enterprises', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SAHITYA COIR FIBER AND ROPES INDUSTRIES', ' District Name ', 'Chittoor', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '15']
[' Industry Name ', 'KN rajesh', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'Sri saraswathi coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri Sai Balaji Coir Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Sri Surya rope coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'NAGA MAHALAKSHMI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'Godavari Fiber Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'GANESH SRI SAI DURGA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri  Satya Lalitha Bhavani Coir Industry', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Red', ' Total Workers ', '2']
[' Industry Name ', 'SRI SAI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'YEDUKONDALU COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Veera manikanta coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SIVA PARVATHI COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Srinivasa coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'karunamaya coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SAI SRI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'SRI KANAKA DURGA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'venkateswarlu coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MAHALAKSHMI COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI VENKATESWARA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'santhosh coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'lakshmi Durga coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'HARSHINI DURGA COIR ROPE INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Sri Vijaya Durga coirs', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'HARSHA MANIKANTA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'CHINTA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'VENKATA RAMANA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'VENKATESWARA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '6']
[' Industry Name ', 'MAHESH COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SAI DURGA COIR ROPES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'SRI KANAKA MAHALAKSHMI COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'SAI BABU', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '4']
[' Industry Name ', 'KASI ANNAPURNA VISWESWARA COIR YARN INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri Vamsikrishna Coir Spinning Unit', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'LAVANYA COCONUT AND COIR', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KANAKA MAHALAKSHMI COIR AND ROPE INDUSTRY   Recent name is Sai Ratnam', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'vanuvulamma coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Sri venkata Surya coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI SATYA VEERABHADRA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'THANVISRI COIRS KADALIVARI PALEM', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'EAST COAST COIR INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'lakshmana vinai coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'sri laksmi srinivasa rope coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'VARALAKSHMI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Lakshmi Sri coir industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'RAMADEVI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Hema coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'MattaVenkateswaraovcoir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI RAMANJANEYA INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Durga Coir Yarn Industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '8']
[' Industry Name ', 'MOKSHA INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'SRI MOKSHA COIR WORKS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR', ' Activity Name ', 'Manufacturing of coir items from coconut husk', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '5']
[' Industry Name ', 'sri ganesh coir industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '9']
[' Industry Name ', 'VIJAYALAKSHMI COIR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri venugopala industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'KASI ANNAPURNA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sreerama coir industries', ' District Name ', 'Krishna', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'BABDADA ROPE INDUSTRIES', ' District Name ', 'Prakasam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Sri datta Siva kameswari coir and yarn industries', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'Coconut Coir and Pith extraction', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '6']
[' Industry Name ', 'DURGA COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'SRI LAKSHMI GANAPATHI COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'sri jaya lakshmi narayana coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'VENKATA LAKSHMI GANAPATI COIR INDUSTRIES', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '25']
[' Industry Name ', 'SRI VEERA VENKATA SATYANARAYANA FIBRES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'sudhakar coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'satya veni coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '3']
[' Industry Name ', 'Mallipudi Coir Estate', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '5']
[' Industry Name ', 'Shanmuka sri coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'Madhu latha coir industry', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SV FIBRE INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'SV COIR EXPORTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'SRI SATYADEVA FIBRES', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'KANDREGULA CHINNARI', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'SRI LAKSHMI INDUSTRIES', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'HANUMAN COIR PRODUCTS', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '7']
[' Industry Name ', 'PAVAN COIR INDUSTRY', ' District Name ', 'East Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '2']
[' Industry Name ', 'Flour mill', ' District Name ', 'Krishna', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Rama Industries', ' District Name ', 'West Godavari', ' Sector Name ', 'COIR BASED', ' Activity Name ', 'COCONUT FIBRE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'AUTO I SERVICES', ' District Name ', 'Kurnool', ' Sector Name ', 'SERVICE', ' Activity Name ', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '10']
[' Industry Name ', 'expert mechanical industries', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'EARTH MOVING EQUIPMENT AND ACCESSORIE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri sai vigneswra mechanical engineering works', ' District Name ', 'Krishna', ' Sector Name ', 'SERVICE', ' Activity Name ', 'Automobile Servicing Works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sree Venkateswara Enterprises', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURE OF STEEL ALMIRAHS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'floor mill', ' District Name ', 'Vizianagaram', ' Sector Name ', 'SERVICE', ' Activity Name ', 'CROP AND ANIMAL PRODUCTION HUNTING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'ANNAPURNA WORK SHOP', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'manufacture of tractor trailer', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'MS PRAVEEN FAL G BRICKS', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'FAL G BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI LAKSHMI TIRUPATHAMMATHALLI FLYASH BRICKS', ' District Name ', 'Krishna', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '4']
[' Industry Name ', 'ARUNODAYA STUDIO', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'SERVICE', ' Activity Name ', 'photography services', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Surya Engineering Work', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'sri ramalingeswara engineering  lime and cement pipe works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Engineering works', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '7']
[' Industry Name ', 'Sri Markandeya Engineering Works', ' District Name ', 'East Godavari', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'LATHE AND WELDING WORKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Venkateswara cold Storage', ' District Name ', 'Guntur', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Prasanna Ive parlor', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'COLD STORAGES', ' Activity Name ', 'COLD STORAGE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Yellammathalli purified water plant', ' District Name ', 'Anantapur', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'Aqua feed', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Sri Lakshmi Narasimha Arch Welding shop', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'ARC WELDING', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Ms Subhani welding workshop', ' District Name ', 'Kadapa', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'MANUFACTURING OF DOORS AND WINDOWS CONTROL PANEL', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Irfan Tyres', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRI SAMBA SIVA LORRY SERVICE', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Machinery spares', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Sri Lakshminarayana paper product', ' District Name ', 'Srikakulam']
[' Industry Name ', 'Jani Basha Spare Parts', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'Tinkering Works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Manufacturing of Fabricated Steel Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Nagalakshmi Engineering works', ' District Name ', 'Guntur', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Mfg. of Construction Equipment like Cranes and Excavators', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'AB engineers', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'bismillah auto agencies', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'Danieli India Ltd', ' District Name ', 'Chittoor', ' Sector Name ', 'ENGINEERING', ' Activity Name ', 'Metal Machined Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '95']
[' Industry Name ', 'lalitha agencies', ' District Name ', 'Visakhapatnam', ' Sector Name ', 'Fertilizers & Pesticides', ' Activity Name ', 'Fertilizer (basic)', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Chennakesava mechanical works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Automobile Spare Parts', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'Sri sri sai durga stone crusher', ' District Name ', 'East Godavari', ' Sector Name ', 'MINING', ' Activity Name ', 'MINING AND CRUSHING', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'SRIRAMA FAL G BRICKS', ' District Name ', 'Srikakulam', ' Sector Name ', 'BRICKS', ' Activity Name ', 'CEMENT BRICKS', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '3']
[' Industry Name ', 'JAYA DURGA STONE CRUSHER', ' District Name ', 'Srikakulam', ' Sector Name ', 'MINING', ' Activity Name ', 'Mining of Road metal', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'karthikeya slabs', ' District Name ', 'Anantapur', ' Sector Name ', 'Non Mettalic Mineral', ' Activity Name ', 'Slab Cutting & Polishing', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'KOLA VENKATESWARLU PRAWN CULTURE', ' District Name ', 'Prakasam', ' Sector Name ', 'Aqua Marine', ' Activity Name ', 'AQUA CULTURE', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '2']
[' Industry Name ', 'Harshad basha flyash bricks', ' District Name ', 'Guntur', ' Sector Name ', 'BRICKS', ' Activity Name ', 'Fly Ash Bricks', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '5']
[' Industry Name ', 'sri JC paper roll converting works', ' District Name ', 'East Godavari']
[' Industry Name ', 'sk Ibrahim auto electrical and battery works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Green', ' Total Workers ', '1']
[' Industry Name ', 'computer stickering works', ' District Name ', 'Guntur', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'White', ' Total Workers ', '1']
[' Industry Name ', 'OMNI AUTO LIMITED', ' District Name ', 'Chittoor', ' Sector Name ', 'AUTO COMPONENTS', ' Activity Name ', 'Auto Components', ' Industry as per pollution Index Category ', 'Orange', ' Total Workers ', '108']
Out[6]:
array(['1', '4', '2', '5', '3', '20', '14', '8', '10', '6', 'NA', '7',
       '24', '15', '22', '19', '9', '12', '61', '28', '27', '13', '35',
       '81', '21', '11', '26', '29', '16', '17', '40', '711', '670', '36',
       '141', '95', '103', '46', '31', '50', '18', '25', '902', '147',
       '138', '49', '91', '72', '113', '400', '360', '170', '55', '101',
       '430', '389', '228', '480', '123', '130', '88', '142', '420', '96',
       '62', '42', '63', '106', '76', '105', '185', '500', '162', '51',
       '30', '131', '73', '187', '80', '94', '45', '43', '69', '32',
       '322', '321', '47', '271', '217', '407', '109', '52', '41', '111',
       '39', '334', '33', '23', '166', '38', '34', '315', '412', '252',
       '165', '155', '137', '139', '251', '146', '53', '204', '725',
       '275', '86', '1000', '153', '213', '44', '847', '260', '143',
       '642', '349', '37', '60', '240', '250', '92', '70', '175', '119',
       '122', '74', '100', '75', '152', '136', '234', '180', '210', '189',
       '66', '71', '107', '302', '156', '78', '367', '54', '59', '222',
       '144', '120', '83', '65', '125', '127', '68', '79', '286', '193',
       '200', '64', '89', '310', '150', '118', '239', '56', '108', '383',
       '188', '48', '85', '426', '266', '280', '192', '82', '87', '58',
       '391', '1026', '216', '84', '223', '657', '304', '129', '135',
       '98', '128', '443', '134', '93', '104', '224', '172', '160', '601',
       '90', '544', '419', '481', '281', '673', '267', '77', '429', '779',
       '154', '413', '999', '263', '341', '482', '351', '247', '206',
       '233', '612', '145', '151', '464', '179', '149', '167', '249',
       '102'], dtype=object)
In [7]:
df
Out[7]:
Industry Name Latitude Longitude Category District Name Sector Name Activity Name Pollution Index Category Total Workers
0 Sri padamavathi mechanical works 16.4971132 80.6779712 Micro Krishna SERVICE REPAIR AND MAINTENANCE OF BUSES White 1
1 venkatesh mechanical works 13.2185764 79.1249472 Micro Chittoor SERVICE REPAIR AND MAINTENANCE OF BUSES Green 1
2 N Nagaraju Transformers 14.4516162 78.8407888 Micro Kadapa SERVICE Generators and Transformers Green 4
3 Srinivasa Electricals 16.5043265 80.7025557 Micro Krishna SERVICE Generators and Transformers Green 1
4 sai hanuman engineering works 16.6368089 80.9712264 Micro West Godavari SERVICE Generators and Transformers Green 4
... ... ... ... ... ... ... ... ... ...
36258 Harshad basha flyash bricks 16.2043569 80.5252653 Micro Guntur BRICKS Fly Ash Bricks Orange 5
36259 sri JC paper roll converting works 16.9153006 81.8075763 Micro East Godavari NA Pulp NA NA
36260 sk Ibrahim auto electrical and battery works 16.3230482 80.4700225 Micro Guntur AUTO COMPONENTS Auto Components Green 1
36261 computer stickering works 16.3230312 80.4760893 Micro Guntur AUTO COMPONENTS Auto Components White 1
36262 OMNI AUTO LIMITED 13.5518157 80.0196149 Large.png" Chittoor AUTO COMPONENTS Auto Components Orange 108

36263 rows × 9 columns

In [8]:
df.shape
Out[8]:
(36263, 9)
In [9]:
df.to_csv('AP_Industries_location.csv')
In [ ]: